From 04cd6b9b52fa9c1ae56ce814b392559a991ac10a Mon Sep 17 00:00:00 2001 From: Michael Howitz Date: Mon, 13 Nov 2023 08:34:24 +0100 Subject: [PATCH] Remove preliminary support for Python 3.13. It depends on a release of cffi to build the dependencies containing C code. --- .github/workflows/tests.yml | 2 +- .meta.toml | 4 ++-- tox.ini | 1 - 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 46aa2f7..f4946db 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,6 +20,7 @@ jobs: - ["ubuntu", "ubuntu-20.04"] config: # [Python version, tox env] + - ["3.9", "release-check"] - ["3.9", "lint"] - ["3.7", "py37"] - ["3.8", "py38"] @@ -27,7 +28,6 @@ jobs: - ["3.10", "py310"] - ["3.11", "py311"] - ["3.12", "py312"] - - ["3.13.0-alpha - 3.13.0", "py313"] - ["3.9", "coverage"] runs-on: ${{ matrix.os[1] }} diff --git a/.meta.toml b/.meta.toml index 6654983..fc24c97 100644 --- a/.meta.toml +++ b/.meta.toml @@ -2,13 +2,13 @@ # https://github.com/zopefoundation/meta/tree/master/config/zope-product [meta] template = "zope-product" -commit-id = "13b9049c" +commit-id = "6f8d8c51" [python] with-pypy = false with-sphinx-doctests = false with-windows = false -with-future-python = true +with-future-python = false with-macos = false [tox] diff --git a/tox.ini b/tox.ini index 5015244..6bef684 100644 --- a/tox.ini +++ b/tox.ini @@ -11,7 +11,6 @@ envlist = py310 py311 py312 - py313 coverage [testenv]