Skip to content

Commit

Permalink
Add Python 3.12 to wheels generation (#1802)
Browse files Browse the repository at this point in the history
The highest version of Python for generating wheels in the Github workflow is currently 3.11. However, Python 3.12 is now quite widespread (Ubuntu 24.04, Arch Linux, Windows etc.). On a platform with Python 3.12, pip install results in recompilation from source, which is quite tedious.

The proposal is therefore simply to extend the generation of wheels in the Github workflow to Python 3.12, to feed PyPI.
  • Loading branch information
howetuft committed May 7, 2024
1 parent fc41eb1 commit 5838ea0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-minor: ['7', '8', '9', '10', '11']
python-minor: ['7', '8', '9', '10', '11', '12']
os: ['ubuntu-latest', 'windows-latest', 'macos-13']

steps:
Expand Down

0 comments on commit 5838ea0

Please sign in to comment.