Skip to content

Commit 2b9c2e9

Browse files
committed
bugfixing
1 parent 8a6149a commit 2b9c2e9

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
run: |
2121
python -m pip install --upgrade pip
2222
pip install flake8 pytest
23-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
23+
if [ -f requirements.dev.txt ]; then pip install -r requirements.dev.txt; fi
2424
- name: Lint with flake8
2525
run: |
2626
# stop the build if there are Python syntax errors or undefined names

requirements.dev.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ wheel
66
pytest
77
sphinx-rtd-theme
88
matplotlib
9-
black
9+
black
10+
pylint

requirements.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
numpy>=1.18
2-
scipy
3-
pylint
4-
pytest
2+
scipy

0 commit comments

Comments
 (0)