[bumpversion]
-current_version = 59.6.0
+current_version = 59.7.0
commit = True
tag = True
- stdlib
- local
python:
- - pypy3
- - 3.6
+ - pypy-3.7
+ - 3.7
- 3.9
- "3.10"
platform:
+v59.7.0
+-------
+
+
+Changes
+^^^^^^^
+* #2930: Require Python 3.7
+
+
v59.6.0
-------
## upstream
# Suppress deprecation warning in flake8
ignore:SelectableGroups dict interface is deprecated::flake8
- # Suppress deprecation warning in pypa/packaging#433
- ignore:The distutils package is deprecated::packaging.tags
## end upstream
# https://github.com/pypa/setuptools/issues/1823
[metadata]
name = setuptools
-version = 59.6.0
+version = 59.7.0
author = Python Packaging Authority
author_email = distutils-sig@python.org
description = Easily download, build, install, upgrade, and uninstall Python packages
packages = find_namespace:
# disabled as it causes tests to be included #2505
# include_package_data = true
-python_requires = >=3.6
+python_requires = >=3.7
install_requires =
[options.packages.find]
# now run 'sample' with the prefix on the PYTHONPATH
bin = 'Scripts' if platform.system() == 'Windows' else 'bin'
exe = prefix / bin / 'sample'
- if sys.version_info < (3, 7) and platform.system() == 'Windows':
+ if sys.version_info < (3, 8) and platform.system() == 'Windows':
exe = str(exe)
subprocess.check_call([exe], env=env)