Skip to content

Commit

Permalink
Added Python 3.13 CI test target
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Oct 13, 2024
1 parent 6342acf commit 05427c0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ jobs:
strategy:
matrix:
include:
- python-version: '3.7'
toxenv: 'py37'
- python-version: '3.8'
toxenv: 'py38'
- python-version: '3.9'
Expand All @@ -20,6 +18,8 @@ jobs:
toxenv: 'py311'
- python-version: '3.12'
toxenv: 'py312'
- python-version: '3.13'
toxenv: 'py313'
steps:
- uses: actions/checkout@v4
- name: Install build dependencies
Expand Down
12 changes: 12 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,12 @@ environment:
PYTHON: "C:\\Python312-x64\\python.exe"
PYTHON_VERSION: 3.12
TOXENV: py312
- TARGET: windows-tox-py313-64bit
BUILD_ENVIRONMENT: python-tox
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
PYTHON: "C:\\Python313-x64\\python.exe"
PYTHON_VERSION: 3.13
TOXENV: py313
- TARGET: macos-tox-py38
BUILD_ENVIRONMENT: python-tox
APPVEYOR_BUILD_WORKER_IMAGE: macos-monterey
Expand Down Expand Up @@ -213,6 +219,12 @@ environment:
HOMEBREW_NO_INSTALL_CLEANUP: 1
PYTHON_VERSION: 3.12
TOXENV: py312
- TARGET: macos-tox-py313
BUILD_ENVIRONMENT: python-tox
APPVEYOR_BUILD_WORKER_IMAGE: macos-monterey
HOMEBREW_NO_INSTALL_CLEANUP: 1
PYTHON_VERSION: 3.13
TOXENV: py313
- TARGET: linux-tox-py310
BUILD_ENVIRONMENT: python-tox
APPVEYOR_BUILD_WORKER_IMAGE: ubuntu2204
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg.in
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ classifiers =
Programming Language :: Python

[options]
python_requires = >=3.7
python_requires = >=3.8
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = auditwheel,py3{7,8,9,10,11,12}
envlist = auditwheel,py3{8,9,10,11,12,13}

[testenv]
usedevelop = True
Expand Down

0 comments on commit 05427c0

Please sign in to comment.