File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -158,7 +158,8 @@ jobs:
158
158
case "${{ matrix.python-version }}" in
159
159
2.6|3.[23]) pkgvers=1.11.3;;
160
160
2.7|3.[456789]) pkgvers=1.16.6;;
161
- *) pkgvers=1.21.1;;
161
+ 3.10) pkgvers=1.21.4;;
162
+ *) pkgvers=1.23.3;;
162
163
esac
163
164
pip install "numpy == ${pkgvers}"
164
165
-
Original file line number Diff line number Diff line change @@ -179,7 +179,8 @@ jobs:
179
179
Switch -regex ("${{ matrix.python-version }}") {
180
180
"^2\.6|3\.[123]$" { Set-Variable -Name "pkgvers" -Value "1.11.3" }
181
181
"^2\.7|3\.[456789]$" { Set-Variable -Name "pkgvers" -Value "1.16.6" }
182
- default { Set-Variable -Name "pkgvers" -Value "1.21.1" }
182
+ "^3\.10$" { Set-Variable -Name "pkgvers" -Value "1.21.4" }
183
+ default { Set-Variable -Name "pkgvers" -Value "1.23.3" }
183
184
}
184
185
$env:SETUPTOOLS_USE_DISTUTILS = "stdlib"
185
186
python -m pip install "numpy == ${pkgvers}"
Original file line number Diff line number Diff line change 2
2
requires = [
3
3
' setuptools' ,
4
4
' wheel' ,
5
- ' numpy == 1.21.1; python_version >= "3.10"' ,
6
- ' numpy == 1.21.1; sys_platform == "darwin" and (python_version >= "3.7" and python_version <= "3.9")' ,
5
+ ' numpy == 1.23.3; python_version >= "3.11"' ,
6
+ ' numpy == 1.21.4; python_version == "3.10"' ,
7
+ ' numpy == 1.21.4; sys_platform == "darwin" and (python_version >= "3.7" and python_version <= "3.9")' ,
7
8
' numpy == 1.16.6; sys_platform != "darwin" and (python_version >= "3.7" and python_version <= "3.9")' ,
8
9
' numpy == 1.16.6; python_version == "2.7" or (python_version >= "3.4" and python_version <= "3.6")' ,
9
10
' numpy == 1.11.3; python_version == "2.6" or (python_version >= "3.2" and python_version <= "3.3")' ,
You can’t perform that action at this time.
0 commit comments