Jelmer Vernooij 3 месяцев назад
Родитель
Сommit
031216d070
2 измененных файлов с 4 добавлено и 4 удалено
  1. 1 1
      .github/workflows/pythontest.yml
  2. 3 3
      pyproject.toml

+ 1 - 1
.github/workflows/pythontest.yml

@@ -17,7 +17,7 @@ jobs:
       matrix:
         os: [ubuntu-latest, macos-latest, windows-latest]
         python-version:
-          ["3.9", "3.10", "3.11", "3.12", "3.13"]
+          ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
       fail-fast: false
 
     steps:

+ 3 - 3
pyproject.toml

@@ -16,6 +16,7 @@ classifiers = [
     "Programming Language :: Python :: 3.11",
     "Programming Language :: Python :: 3.12",
     "Programming Language :: Python :: 3.13",
+    "Programming Language :: Python :: 3.14",
     "Programming Language :: Python :: Implementation :: CPython",
     "Programming Language :: Python :: Implementation :: PyPy",
     "Operating System :: POSIX",
@@ -154,12 +155,12 @@ convention = "google"
 "setup.py" = ["D"]  # Don't require docstrings in setup.py
 
 [tool.cibuildwheel]
-skip = "cp314-*"
+skip = ""
 environment = {PATH="$HOME/.cargo/bin:$PATH"}
 before-build = "pip install -U setuptools-rust && curl https://sh.rustup.rs -sSf | sh -s -- --profile=minimal -y && rustup show"
 
 [tool.cibuildwheel.linux]
-skip = "*-musllinux_* cp314-*"
+skip = "*-musllinux_*"
 archs = ["auto", "aarch64"]
 before-build = "pip install -U setuptools-rust && yum -y install libatomic && curl https://sh.rustup.rs -sSf | sh -s -- --profile=minimal -y && rustup show"
 
@@ -172,5 +173,4 @@ skip = """\
     cp311-macosx_x86_64 cp311-macosx_universal2 \
     cp312-macosx_x86_64 cp312-macosx_universal2 \
     cp313-macosx_x86_64 cp313-macosx_universal2 \
-    cp314-macosx_x86_64 cp314-macosx_universal2 \
     """