We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 94b86f8 + cc4c6c9 commit 70e338dCopy full SHA for 70e338d
5 files changed
.github/workflows/build.yml
@@ -22,19 +22,16 @@ jobs:
22
with:
23
python-version: ${{ matrix.python-version }}
24
25
- - name: Install pipenv
26
- run: |
27
- python -m pip install --upgrade pip
28
- pip install pipenv
29
-
30
- name: Install dependencies
31
run: |
32
- pipenv install --dev --python ${{ matrix.python-version }}
+ python -m pip install --upgrade pip
+ pip install .
+ pip install -r requirements-dev.txt
33
34
- name: Lint with ruff
35
36
- pipenv run lint
+ ruff check .
37
38
- name: Run unit tests
39
40
- pipenv run unittest
+ python -m unittest
Pipfile
@@ -4,7 +4,7 @@ verify_ssl = true
4
name = "pypi"
5
6
[packages]
7
-numpy = "~=1.26"
+numpy = ">=1.26"
8
matplotlib = "~=3.7"
9
scipy = "~=1.13.1"
10
0 commit comments