Browse Source

Add Python 3.13 to build (#334)

.
main
Shantanu 1 week ago
committed by GitHub
parent
commit
4798903d7a
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
4 changed files with 13 additions and 3 deletions
  1. +3
    -2
      .github/workflows/build-wheels.yml
  2. +1
    -0
      .github/workflows/run-tests.yml
  3. +1
    -1
      .readthedocs.yaml
  4. +8
    -0
      appveyor.yml

+ 3
- 2
.github/workflows/build-wheels.yml View File

@@ -11,11 +11,11 @@ jobs:
- name: Build manylinux2014 x86-64 wheels - name: Build manylinux2014 x86-64 wheels
uses: earwig/python-wheels-manylinux-build@latest-manylinux2014_x86_64 uses: earwig/python-wheels-manylinux-build@latest-manylinux2014_x86_64
with: with:
python-versions: 'cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312'
python-versions: 'cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312 cp313-cp313'
- name: Build manylinux 2014 aarch64 wheels - name: Build manylinux 2014 aarch64 wheels
uses: earwig/python-wheels-manylinux-build@latest-manylinux2014_aarch64 uses: earwig/python-wheels-manylinux-build@latest-manylinux2014_aarch64
with: with:
python-versions: 'cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312'
python-versions: 'cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312 cp313-cp313'
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v3
with: with:
name: wheels name: wheels
@@ -38,6 +38,7 @@ jobs:
- '3.10' - '3.10'
- '3.11' - '3.11'
- '3.12' - '3.12'
- '3.13'
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5


+ 1
- 0
.github/workflows/run-tests.yml View File

@@ -12,6 +12,7 @@ jobs:
- '3.10' - '3.10'
- '3.11' - '3.11'
- '3.12' - '3.12'
- '3.13'
with-extension: ['0', '1'] with-extension: ['0', '1']
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4


+ 1
- 1
.readthedocs.yaml View File

@@ -2,7 +2,7 @@ version: 2
build: build:
os: ubuntu-22.04 os: ubuntu-22.04
tools: tools:
python: "3.12"
python: "3.13"


sphinx: sphinx:
configuration: docs/conf.py configuration: docs/conf.py


+ 8
- 0
appveyor.yml View File

@@ -61,6 +61,14 @@ environment:
PYTHON_VERSION: "3.12" PYTHON_VERSION: "3.12"
PYTHON_ARCH: "64" PYTHON_ARCH: "64"


- PYTHON: "C:\\Python313"
PYTHON_VERSION: "3.13"
PYTHON_ARCH: "32"

- PYTHON: "C:\\Python313-x64"
PYTHON_VERSION: "3.13"
PYTHON_ARCH: "64"

install: install:
- "%PIP% install --disable-pip-version-check --user --upgrade pip" - "%PIP% install --disable-pip-version-check --user --upgrade pip"
- "%PIP% install setuptools wheel twine pytest" - "%PIP% install setuptools wheel twine pytest"


Loading…
Cancel
Save