Review supported Python versions and platforms#2
Closed
crusaderky wants to merge 4 commits into
Closed
Conversation
crusaderky
commented
Nov 25, 2025
Comment on lines
80
to
96
| - name: Build wheel (Mac) | ||
| if: startsWith(matrix.os, 'macos') | ||
| run: | | ||
| python -m build --wheel | ||
|
|
||
| - name: Build wheel (Linux / clang) | ||
| if: startsWith(matrix.os, 'ubuntu') && matrix.python_version == '3.6' | ||
| run: | | ||
| clang --version | ||
| CC=clang python -m build --wheel | ||
| python -m build --wheel | ||
|
|
||
| - name: Build wheel (Linux / gcc-9) | ||
| if: startsWith(matrix.os, 'ubuntu') && (matrix.python_version == '3.7' || matrix.python_version == '3.8') | ||
| - name: Build wheel (Linux / gcc) | ||
| if: startsWith(matrix.os, 'ubuntu') && matrix.cc == '' | ||
| run: | | ||
| sudo apt update | ||
| sudo apt install gcc-9 | ||
| gcc-9 --version | ||
| CC=gcc-9 python -m build --wheel | ||
| gcc --version | ||
| python -m build --wheel | ||
|
|
||
| - name: Build wheel (Linux / gcc-10) | ||
| if: startsWith(matrix.os, 'ubuntu') && matrix.python_version == '3.9' | ||
| run: | | ||
| sudo apt update | ||
| sudo apt install gcc-10 | ||
| gcc-10 --version | ||
| CC=gcc-10 python -m build --wheel | ||
| - name: Build wheel (Linux / clang-13) | ||
| if: startsWith(matrix.os, 'ubuntu') && matrix.python_version == '3.10' | ||
| - name: Build wheel (Linux / clang) | ||
| if: startsWith(matrix.os, 'ubuntu') && matrix.cc == 'clang' | ||
| run: | | ||
| clang --version | ||
| CC=clang python -m build --wheel |
Owner
Author
There was a problem hiding this comment.
This section is slightly more verbose than it could be, for the sake of readibility.
crusaderky
commented
Nov 25, 2025
Comment on lines
-55
to
-66
| set "PATH=C:\\Program Files\\LLVM\\bin;%PATH%" | ||
| set "AR=llvm-ar" | ||
| set "AS=llvm-as" | ||
| set "CC=clang" | ||
| set "RANLIB=echo" | ||
| call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64 | ||
| clang --version | ||
| python -m build --wheel | ||
| shell: cmd | ||
| - name: Build wheel (Windows) | ||
| if: startsWith(matrix.os, 'windows') | ||
| run: | |
crusaderky
commented
Nov 25, 2025
| Python310Linux: | ||
| imageName: 'ubuntu-22.04' | ||
| python.version: '3.9' | ||
| python.version: '3.10' |
Owner
Author
There was a problem hiding this comment.
These Azure jobs seem redundant with gh actions. Removing them altogether is out of scope for this PR though.
crusaderky
force-pushed
the
ci-refresh
branch
from
November 25, 2025 10:05
a13d6c2 to
93da15b
Compare
crusaderky
commented
Nov 25, 2025
| # Test requirements | ||
| numpy>=1.15.0; python_version < "3.9" | ||
| numpy>=1.19.0; python_version >= "3.9" | ||
| numpy>=1.21.2 |
Owner
Author
There was a problem hiding this comment.
This is the oldest numpy that supports python 3.10
Follow-up:
This was referenced Nov 25, 2025
Remove obsolete AVX512 compilation flags
ngoldbaum
reviewed
Nov 25, 2025
ngoldbaum
left a comment
There was a problem hiding this comment.
It looks like CI didn't fire here. Otherwise looks good but I'd like to look over the CI logs.
Owner
Author
CI didn't fire because it needs #1 to fire. Successful CI run is visible at explosion#130. |
Owner
Author
|
Merged explosion#130 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR is on top of explosion#129.
CI run can be seen at explosion#130.