Review supported Python versions and platforms#130
Merged
Conversation
crusaderky
force-pushed
the
ci-refresh
branch
2 times, most recently
from
November 24, 2025 16:05
7957bf2 to
f25660d
Compare
crusaderky
commented
Nov 24, 2025
Comment on lines
82
to
98
| - 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 |
Contributor
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 24, 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: | |
Contributor
Author
There was a problem hiding this comment.
This was duplicated
crusaderky
force-pushed
the
ci-refresh
branch
2 times, most recently
from
November 25, 2025 09:38
fc2464f to
8c56ad2
Compare
crusaderky
force-pushed
the
ci-refresh
branch
2 times, most recently
from
November 25, 2025 09:50
2e29bfc to
a13d6c2
Compare
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 |
Contributor
Author
There was a problem hiding this comment.
This is the oldest numpy that supports python 3.10
Follow-up:
Contributor
Author
|
Internal code review at crusaderky#2 |
crusaderky
marked this pull request as ready for review
November 26, 2025 08:48
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 propaedeutic to further work for free-threading.