From: Daniele Varrazzo Date: Fri, 14 Jan 2022 00:07:03 +0000 (+0100) Subject: Use wheel 0.37 as minimum version X-Git-Tag: pool-3.1~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b00c66b20a1cc5e4ad98ea0d5b2d2e6a40860c89;p=thirdparty%2Fpsycopg.git Use wheel 0.37 as minimum version It is the first version officially supporting Python 3.10 https://wheel.readthedocs.io/en/stable/news.html --- diff --git a/psycopg/pyproject.toml b/psycopg/pyproject.toml index fb4f1f4f2..80bad514b 100644 --- a/psycopg/pyproject.toml +++ b/psycopg/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools>=49.2.0", "wheel>=0.34.2"] +requires = ["setuptools>=49.2.0", "wheel>=0.37"] build-backend = "setuptools.build_meta" [tool.black] diff --git a/psycopg/setup.py b/psycopg/setup.py index 3cc8b57f4..37977c6ab 100644 --- a/psycopg/setup.py +++ b/psycopg/setup.py @@ -51,7 +51,7 @@ extras_require = { "flake8 >= 4.0", "mypy >= 0.920, != 0.930, != 0.931", "types-setuptools >= 57.4", - "wheel >= 0.36", + "wheel >= 0.37", ], # Requirements needed to build the documentation "docs": [ diff --git a/psycopg_c/pyproject.toml b/psycopg_c/pyproject.toml index 10e35480c..a0aacce0c 100644 --- a/psycopg_c/pyproject.toml +++ b/psycopg_c/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools>=49.2.0", "wheel>=0.34.2", "Cython>=3.0a5"] +requires = ["setuptools>=49.2.0", "wheel>=0.37", "Cython>=3.0a5"] build-backend = "setuptools.build_meta" [tool.black] diff --git a/pyproject.toml b/pyproject.toml index 1d6eab8a1..1e47972a0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools>=49.2.0", "wheel>=0.34.2"] +requires = ["setuptools>=49.2.0", "wheel>=0.37"] build-backend = "setuptools.build_meta" [tool.black] diff --git a/tests/constraints.txt b/tests/constraints.txt index a320beb41..35e5c7a98 100644 --- a/tests/constraints.txt +++ b/tests/constraints.txt @@ -22,7 +22,7 @@ dnspython == 2.1.0 flake8 == 4.0.0 mypy == 0.920 types-setuptools == 57.4.0 -wheel == 0.36.0 +wheel == 0.37 # From the 'docs' extra Sphinx == 4.2.0