Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,22 @@ jobs:
# Python 3.10
- python: '3.10'
builder: windows-2022
toolset: '14.41' # Visual Studio 2022
toolset: '14.42' # Visual Studio 2022
winsdk: '10.0.17763.0' # Windows 10 1809
# Python 3.11
- python: '3.11'
builder: windows-2022
toolset: '14.41' # Visual Studio 2022
toolset: '14.42' # Visual Studio 2022
winsdk: '10.0.17763.0' # Windows 10 1809
# Python 3.12
- python: '3.12'
builder: windows-2022
toolset: '14.41' # Visual Studio 2022
toolset: '14.42' # Visual Studio 2022
winsdk: '10.0.17763.0' # Windows 10 1809
# Python 3.13
- python: '3.13'
builder: windows-2022
toolset: '14.42' # Visual Studio 2022
winsdk: '10.0.17763.0' # Windows 10 1809
arch:
- x86
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Build instructions

Visual Studio 2019 will work for Python 3.6-3.9.

Visual Studio 2022 will work for Python 3.10-3.12.
Visual Studio 2022 will work for Python 3.10-3.13.

3. Install Python 3.6 or later to get
the [Python launcher for Windows](https://docs.python.org/3/using/windows.html#launcher).
Expand Down Expand Up @@ -120,15 +120,15 @@ Build instructions
links the source code in `pyXY\` for each of the specified Python versions,
producing wheels as output in `dist\`.

### Rebuilding the wheels for Python 3.6, 3.7, 3.8, 3.9, 3.10, 3.11 and 3.12
### Rebuilding the wheels for Python 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, and 3.13

In `x86 Native Tools Command Prompt for VS 2022`:

build-wheels.bat 3.6-32 3.7-32 3.8-32 3.9-32 3.10-32 3.11-32 3.12-32
build-wheels.bat 3.6-32 3.7-32 3.8-32 3.9-32 3.10-32 3.11-32 3.12-32 3.13-32

In `x64 Native Tools Command Prompt for VS 2022`:

build-wheels.bat 3.6 3.7 3.8 3.9 3.10 3.11 3.12
build-wheels.bat 3.6 3.7 3.8 3.9 3.10 3.11 3.12 3.13


This gives a set of wheels in `dist\`.
Expand Down
Loading