Skip to content

Commit be893a6

Browse files
committed
docupages.py: Switch from pipenv to poetry
1 parent af44619 commit be893a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docupages.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ def generate_documentation(
6969
# copy_docs_output_dir(
7070
# doxygen_dir.joinpath("html"), mkdocs_dir.joinpath("docs", "doxygen")
7171
# )
72-
subprocess.run(["pipenv", "sync"], cwd=mkdocs_dir)
72+
subprocess.run(["poetry", "install", "--no-root"], cwd=mkdocs_dir)
7373
subprocess.run(
74-
["pipenv", "run", "mkdocs", "build"],
74+
["poetry", "run", "mkdocs", "build"],
7575
cwd=mkdocs_dir,
7676
check=True,
7777
)

0 commit comments

Comments
 (0)