Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve #15: separated requirements packages #22

Merged
merged 1 commit into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ContinuousTesting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
- name: Install Dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements.txt
pip install -r requirements-testing.txt

- name: Static Lint
run: |
ruff . --verbose --output-format=github
ruff . --verbose --output-format=github

- name: Static Type Check
run: |
Expand Down
2 changes: 2 additions & 0 deletions requirements-basic.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
numpy
scipy
3 changes: 3 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-r requirements-basic
matplotlib
jupyterlab
5 changes: 5 additions & 0 deletions requirements-testing.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-r requirements-basic.txt
ruff
pytest
pytest-cov
mypy
12 changes: 3 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
numpy
scipy
matplotlib

ruff
pytest
pytest-cov
mypy
jupyterlab
-r requirements-basic.txt
-r requirements-testing.txt
-r requirements-dev.txt
Loading