Skip to content

Commit

Permalink
Allow setuptools <= 75.6.0. (#292)
Browse files Browse the repository at this point in the history
`zc.buildout` is nowadays tested against this version.

Co-authored-by: Jens Vagelpohl <[email protected]>
  • Loading branch information
icemac and dataflake authored Dec 19, 2024
1 parent 5cba552 commit d1a00d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Change log
- Allow specifying a minimum supported Python version other than the previously
hardcoded default of Python 3.8.

- Allow ``setuptools <= 75.6.0``.

1.0 (2024-10-02)
----------------
Expand Down
2 changes: 1 addition & 1 deletion src/zope/meta/shared/packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
NEWEST_PYTHON_VERSION = '3.13'
FUTURE_PYTHON_VERSION = '3.14'
PYPY_VERSION = '3.10'
SETUPTOOLS_VERSION_SPEC = '< 74'
SETUPTOOLS_VERSION_SPEC = '<= 75.6.0'
MANYLINUX_PYTHON_VERSION = '3.11'
MANYLINUX_AARCH64 = 'manylinux2014_aarch64'
MANYLINUX_I686 = 'manylinux2014_i686'
Expand Down

0 comments on commit d1a00d2

Please sign in to comment.