From ae249a31229db18e0c3e133756b5f28773abf0f1 Mon Sep 17 00:00:00 2001 From: Jens Vagelpohl Date: Wed, 18 Sep 2024 07:52:57 +0200 Subject: [PATCH] - remove RestrictedPython pin --- .manylinux-install.sh | 8 ++++---- .meta.toml | 2 +- pyproject.toml | 1 - setup.py | 1 - 4 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.manylinux-install.sh b/.manylinux-install.sh index bda6deb..76729eb 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 5ed29a2..5de1515 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 = "85622de1" [python] with-windows = true diff --git a/pyproject.toml b/pyproject.toml index d5874ee..09531c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,6 @@ requires = ["setuptools<74"] build-backend = "setuptools.build_meta" -[tool.coverage] [tool.coverage.run] branch = true source = ["AccessControl"] diff --git a/setup.py b/setup.py index 144e040..190e767 100644 --- a/setup.py +++ b/setup.py @@ -76,7 +76,6 @@ 'ExtensionClass >= 4.2.1', 'Persistence >= 3.0a3', 'RestrictedPython >= 5.1', - 'RestrictedPython == 7.2a1.dev0; python_version > "3.12"', 'transaction', 'zExceptions', 'zope.component',