mirror of https://github.com/ansible/ansible.git
Raise the minimum setuptools version to 66.1.0 (#81341)
* Raise the minimum setuptools version to 66.1.0 This is the first version to support Python 3.12. While Python 3.10 and 3.11 could use an older version, a consistent minimum is easier to work with and test against. * Fix PEP 517 integration testpull/81347/head
parent
5167618e46
commit
c8bc393871
@ -1,2 +1,2 @@
|
|||||||
minor_changes:
|
minor_changes:
|
||||||
- The minimum required ``setuptools`` version is now 45.2.0, as it is the oldest version to support Python 3.10.
|
- The minimum required ``setuptools`` version is now 66.1.0, as it is the oldest version to support Python 3.12.
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
[build-system]
|
[build-system]
|
||||||
requires = ["setuptools >= 45.2.0"]
|
requires = ["setuptools >= 66.1.0"] # minimum setuptools version supporting Python 3.12
|
||||||
backend-path = ["packaging"] # requires 'Pip>=20' or 'pep517>=0.6.0'
|
backend-path = ["packaging"] # requires 'Pip>=20' or 'pep517>=0.6.0'
|
||||||
build-backend = "pep517_backend.hooks" # wraps `setuptools.build_meta`
|
build-backend = "pep517_backend.hooks" # wraps `setuptools.build_meta`
|
||||||
|
|||||||
Loading…
Reference in New Issue