File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ install_requires =
60
60
# however macOS was broken and it's safe to build against 1.21.6 on all platforms (see gh-28 and gh-45)
61
61
numpy ==1.21.6; python_version=='3.10' and platform_machine!='loongarch64'
62
62
numpy ==1.23.2; python_version=='3.11'
63
+ numpy ==1.26.1; python_version=='3.12'
63
64
64
65
# PyPy requirements
65
66
numpy ==1.19.0; python_version=='3.6' and platform_machine!='loongarch64' and platform_python_implementation=='PyPy'
@@ -71,4 +72,4 @@ install_requires =
71
72
# we specify an unpinned Numpy which allows source distributions
72
73
# to be used and allows wheels to be used as soon as they
73
74
# become available.
74
- numpy; python_version>='3.12 '
75
+ numpy; python_version>='3.13 '
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ def test_has_at_most_one_pinned_dependency(
106
106
# for valid combinations, we test more strictly: expect exactly zero or one pins
107
107
if valid :
108
108
# we only expect a pin for released python versions
109
- expect_pin = False if (python_version == "3.12 " ) else expect_pin
109
+ expect_pin = False if (python_version == "3.13 " ) else expect_pin
110
110
log_msg = "Expected " + ("exactly one pin" if expect_pin else "no pins" )
111
111
assert (
112
112
len (filtered_requirements ) == int (expect_pin )
You can’t perform that action at this time.
0 commit comments