File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -34,15 +34,17 @@ jobs:
34
34
restore-keys : |
35
35
${{ runner.os }}-pip-
36
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
37
42
- name : Install dependencies py3.7
38
43
if : matrix.python-version == 3.7
39
44
run : pip install -r requirements-dev-3.7.txt
40
45
- name : Install dependencies
41
46
if : matrix.python-version != 3.7
42
- run : |
43
- # workaround for 3.12, SEE: https://github.com/pypa/setuptools/issues/3661#issuecomment-1813845177
44
- pip install --upgrade setuptools
45
- pip install -r requirements-dev.txt
47
+ run : pip install -r requirements-dev.txt
46
48
- name : Install Numpy Dev
47
49
if : ${{ matrix.numpy-version }}
48
50
run : pip install -I --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple "numpy>=0.0.dev0"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ bump2version==1.0.1
4
4
jsonpickle == 3.0.2
5
5
coverage == 6.5.0
6
6
ipdb == 0.13.13
7
- numpy ~ =1.24.4
7
+ numpy > =1.24.4 , < 2.0.0
8
8
pytest == 7.4.2
9
9
pytest-cov == 4.1.0
10
10
python-dotenv == 0.21.0
You can’t perform that action at this time.
0 commit comments