File tree Expand file tree Collapse file tree 5 files changed +544
-518
lines changed
Expand file tree Collapse file tree 5 files changed +544
-518
lines changed Original file line number Diff line number Diff line change @@ -22,19 +22,16 @@ jobs:
2222 with :
2323 python-version : ${{ matrix.python-version }}
2424
25- - name : Install pipenv
26- run : |
27- python -m pip install --upgrade pip
28- pip install pipenv
29-
3025 - name : Install dependencies
3126 run : |
32- pipenv install --dev --python ${{ matrix.python-version }}
27+ python -m pip install --upgrade pip
28+ pip install .
29+ pip install -r requirements-dev.txt
3330
3431 - name : Lint with ruff
3532 run : |
36- pipenv run lint
33+ ruff check .
3734
3835 - name : Run unit tests
3936 run : |
40- pipenv run unittest
37+ python -m unittest
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ verify_ssl = true
44name = " pypi"
55
66[packages ]
7- numpy = " ~ =1.26"
7+ numpy = " > =1.26"
88matplotlib = " ~=3.7"
99scipy = " ~=1.13.1"
1010
You can’t perform that action at this time.
0 commit comments