From b8c2d72b1584c4e900fabd5ddd0db1e2240e386d Mon Sep 17 00:00:00 2001 From: Vladimir Filipenko Date: Thu, 5 Dec 2024 02:13:10 +0300 Subject: [PATCH] 3.13 --- .github/workflows/release.yml | 2 +- .github/workflows/test_build.yml | 2 +- .github/workflows/tests.yml | 2 +- pyproject.toml | 1 + setup.py | 1 + 5 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cd1d9ba..fa0216b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -73,7 +73,7 @@ jobs: env: CIBW_ENVIRONMENT_MACOS: > CC="$(brew --prefix llvm)/bin/clang" CXX="$(brew --prefix llvm)/bin/clang++" - CIBW_BUILD: cp37-* cp38-* cp39-* cp310-* cp311-* cp312-* + CIBW_BUILD: cp37-* cp38-* cp39-* cp310-* cp311-* cp312-* cp313-* CIBW_BEFORE_BUILD_LINUX: 'if [ $(python -c "import sys; print(sys.version_info[1])") -ge 9 ]; then python -m pip install "numpy<3.0.0" --config-settings=setup-args="-Dallow-noblas=true"; fi' - uses: actions/upload-artifact@v3 with: diff --git a/.github/workflows/test_build.yml b/.github/workflows/test_build.yml index d502226..947dbe8 100644 --- a/.github/workflows/test_build.yml +++ b/.github/workflows/test_build.yml @@ -47,6 +47,6 @@ jobs: env: CIBW_ENVIRONMENT_MACOS: > CC="$(brew --prefix llvm)/bin/clang" CXX="$(brew --prefix llvm)/bin/clang++" - CIBW_BUILD: cp37-* cp39-* cp312-* + CIBW_BUILD: cp37-* cp39-* cp312-* cp313-* CIBW_SKIP: "*manylinux_x86_64" CIBW_BEFORE_BUILD_LINUX: 'if [ $(python -c "import sys; print(sys.version_info[1])") -ge 9 ]; then python -m pip install "numpy<3.0.0" --config-settings=setup-args="-Dallow-noblas=true"; fi' diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 634a26d..69659b9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 2f7a669..a8a423e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,6 +25,7 @@ classifiers = [ 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', ] [options] diff --git a/setup.py b/setup.py index a2fee0c..10cbca1 100644 --- a/setup.py +++ b/setup.py @@ -15,6 +15,7 @@ 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', ] with open(root / 'requirements.txt', encoding='utf-8') as file: