diff --git a/.manylinux-install.sh b/.manylinux-install.sh index ef9a2ce..eec4d28 100755 --- a/.manylinux-install.sh +++ b/.manylinux-install.sh @@ -41,12 +41,12 @@ tox_env_map() { # Compile wheels for PYBIN in /opt/python/*/bin; do if \ - [[ "${PYBIN}" == *"cp311/"* ]] || \ - [[ "${PYBIN}" == *"cp312/"* ]] || \ - [[ "${PYBIN}" == *"cp313/"* ]] || \ [[ "${PYBIN}" == *"cp38/"* ]] || \ [[ "${PYBIN}" == *"cp39/"* ]] || \ - [[ "${PYBIN}" == *"cp310/"* ]] ; then + [[ "${PYBIN}" == *"cp310/"* ]] || \ + [[ "${PYBIN}" == *"cp311/"* ]] || \ + [[ "${PYBIN}" == *"cp312/"* ]] || \ + [[ "${PYBIN}" == *"cp313/"* ]] ; then "${PYBIN}/pip" install -e /io/ "${PYBIN}/pip" wheel /io/ -w wheelhouse/ if [ `uname -m` == 'aarch64' ]; then diff --git a/.meta.toml b/.meta.toml index 747fe96..3610ab3 100644 --- a/.meta.toml +++ b/.meta.toml @@ -2,7 +2,7 @@ # https://github.com/zopefoundation/meta/tree/master/config/c-code [meta] template = "c-code" -commit-id = "a7193216" +commit-id = "32ea0a11" [python] with-windows = true diff --git a/CHANGES.rst b/CHANGES.rst index 7a3ee57..1e57abb 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,7 +2,7 @@ ``persistent`` Changelog ========================== -6.1 (unreleased) +6.1 (2024-09-17) ================ - Add final support for Python 3.13. diff --git a/pyproject.toml b/pyproject.toml index ab87273..800b609 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,6 @@ requires = ["setuptools<74"] build-backend = "setuptools.build_meta" -[tool.coverage] [tool.coverage.run] branch = true source = ["persistent"] diff --git a/setup.py b/setup.py index ec11e19..febc2fb 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ from setuptools import setup -version = '6.1.dev0' +version = '6.1' here = os.path.abspath(os.path.dirname(__file__))