Skip to content

Commit

Permalink
use requirement-dev.txt for now
Browse files Browse the repository at this point in the history
  • Loading branch information
osundwajeff committed Sep 11, 2024
1 parent 7dc1ade commit e17261a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
cache: "pip"
- name: Dependencies
run: |
pip install -r docs/requirements.txt
pip install -r docs/requirements-dev.txt
- name: Build Jupyter Book
run: |
jupyter-book build . --config docs/_config.yml --toc docs/_toc.yml
Expand Down
4 changes: 2 additions & 2 deletions admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,8 +282,8 @@ def add_requirements_file(
context: typer.Context,
output_directory: typing.Optional[Path] = LOCAL_ROOT_DIR / "build/temp",
):
resources_path = LOCAL_ROOT_DIR / "requirements.txt"
target_path = output_directory / "requirements.txt"
resources_path = LOCAL_ROOT_DIR / "requirements-dev.txt"
target_path = output_directory / "requirements-dev.txt"

shutil.copy(str(resources_path.resolve()), str(target_path))

Expand Down

0 comments on commit e17261a

Please sign in to comment.