Skip to content

Commit

Permalink
Standard naming for requirements (#29)
Browse files Browse the repository at this point in the history
Co-authored-by: Russell Goyder <[email protected]>
  • Loading branch information
russellgoyder and russellgoyder authored Dec 27, 2024
1 parent be26ef7 commit 9a16a38
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
pip install -r requirements.txt
- name: Test with pytest
run: |
Expand All @@ -44,7 +44,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
pip install -r requirements.txt
- name: Test with pytest and nbmake
run: |
Expand All @@ -66,7 +66,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
pip install -r requirements.txt
- name: Lint with Ruff
run: |
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ mkdocs:
# Optionally declare the Python requirements required to build your docs
python:
install:
- requirements: requirements_dev.txt
- requirements: requirements.txt
3 changes: 1 addition & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
include LICENSE
include pyproject.toml
prune requirements_dev.txt
prune dollar_dollar.py
prune requirements.txt
prune scripts

File renamed without changes.
4 changes: 1 addition & 3 deletions scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,5 @@
python3 -m venv venv
source venv/bin/activate

pip install -r requirements_dev.txt
pip install -r requirements.txt
python3 -m pip install -e .

# for requirements_dev.txt: mkdocstrings and mkdocstrings.python

0 comments on commit 9a16a38

Please sign in to comment.