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
9 changes: 9 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install setuptools
run: pip install "setuptools<72"

- name: Build module
run: python setup.py build

Expand All @@ -68,6 +71,9 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"

steps:
- uses: actions/checkout@v4
Expand All @@ -77,6 +83,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install setuptools
run: pip install "setuptools<72"

- name: Build module
run: python setup.py build

Expand Down
12 changes: 12 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ environment:
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python37"
- PYTHON: "C:\\Python312"
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
INSTALL_SETUPTOOLS: "1"
- PYTHON: "C:\\Python313"
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
INSTALL_SETUPTOOLS: "1"
- PYTHON: "C:\\Python26-x64"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python33-x64"
Expand All @@ -16,6 +22,12 @@ environment:
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python37-x64"
- PYTHON: "C:\\Python312-x64"
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
INSTALL_SETUPTOOLS: "1"
- PYTHON: "C:\\Python313-x64"
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
INSTALL_SETUPTOOLS: "1"

build: off

Expand Down
5 changes: 5 additions & 0 deletions build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,9 @@ IF "%DISTUTILS_USE_SDK%"=="1" (
ECHO Using default MSVC build environment
)

IF "%INSTALL_SETUPTOOLS%"=="1" (
ECHO Installing setuptools
%PYTHON%\\python.exe -m pip install "setuptools<72"
)

CALL %*
Loading