We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b057554 + ce618ee commit 87c9129Copy full SHA for 87c9129
.github/workflows/main.yaml
@@ -34,6 +34,11 @@ jobs:
34
restore-keys: |
35
${{ runner.os }}-pip-
36
${{ runner.os }}-
37
+ - name: Upgrade setuptools
38
+ if: matrix.python-version == 3.12
39
+ run: |
40
+ # workaround for 3.12, SEE: https://github.com/pypa/setuptools/issues/3661#issuecomment-1813845177
41
+ pip install --upgrade setuptools
42
- name: Install dependencies py3.7
43
if: matrix.python-version == 3.7
44
run: pip install -r requirements-dev-3.7.txt
requirements-dev.txt
@@ -4,7 +4,7 @@ bump2version==1.0.1
4
jsonpickle==3.0.2
5
coverage==6.5.0
6
ipdb==0.13.13
7
-numpy==1.24.4
+numpy>=1.24.4,<2.0.0
8
pytest==7.4.2
9
pytest-cov==4.1.0
10
python-dotenv==0.21.0
0 commit comments