-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
BLD: Build wheels for Python 3.12 #55010
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
35ccfcf
6324dae
24b0dfd
c766d83
0ee054c
28d4727
56be601
f36f047
69248c0
c7294c6
013a897
6d326e8
218e30b
ca9dab7
7f2575a
c8e5ff1
ae783a6
c43d784
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,8 @@ requires = [ | |
# we don't want to force users to compile with 1.25 though | ||
# (Ideally, in the future, though, oldest-supported-numpy can be dropped when our min numpy is 1.25.x) | ||
"oldest-supported-numpy>=2022.8.16; python_version<'3.12'", | ||
"numpy>=1.22.4; python_version>='3.12'", | ||
# TODO: This needs to be updated when the official numpy 1.26 comes out | ||
"numpy>=1.26.0b1; python_version>='3.12'", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could we just use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't know if pip will pull a pre-release without explicitly specifying this. This should be nbd though, I'm not planning on publishing the built wheels to PyPI anyways until numpy 1.26 is out. |
||
"versioneer[toml]" | ||
] | ||
|
||
|
@@ -30,7 +31,9 @@ license = {file = 'LICENSE'} | |
requires-python = '>=3.9' | ||
dependencies = [ | ||
"numpy>=1.22.4; python_version<'3.11'", | ||
"numpy>=1.23.2; python_version>='3.11'", | ||
"numpy>=1.23.2; python_version=='3.11'", | ||
# TODO: This needs to be updated when the official numpy 1.26 comes out | ||
"numpy>=1.26.0b1; python_version>='3.12'", | ||
"python-dateutil>=2.8.2", | ||
"pytz>=2020.1", | ||
"tzdata>=2022.1" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ideally the
3.12-rc
should still be associated withwindowsservercore
right? Otherwise looks like this is just testing with thepython:3.12-rc
imageThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes it's a shared tag iirc, so should resolve to Windows Server Core when running on Windows
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In pytest logs I see win32 as the platform, so this looks to be working