From 35c4aec01e515d5639b2fb58dd5f7bf3d454f0e0 Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Mon, 18 Jul 2022 15:39:05 +0900 Subject: [PATCH] Imported Upstream version 59.7.0 --- CHANGES.rst | 9 +++++++++ PKG-INFO | 4 ++-- pytest.ini | 2 -- setup.cfg | 4 ++-- setuptools.egg-info/PKG-INFO | 4 ++-- setuptools/tests/test_develop.py | 2 +- 6 files changed, 16 insertions(+), 9 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 9b38064..5c898fa 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,12 @@ +v59.7.0 +------- + + +Changes +^^^^^^^ +* #2930: Require Python 3.7 + + v59.6.0 ------- diff --git a/PKG-INFO b/PKG-INFO index 7752367..0fca7f0 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: setuptools -Version: 59.6.0 +Version: 59.7.0 Summary: Easily download, build, install, upgrade, and uninstall Python packages Home-page: https://github.com/pypa/setuptools Author: Python Packaging Authority @@ -18,7 +18,7 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules Classifier: Topic :: System :: Archiving :: Packaging Classifier: Topic :: System :: Systems Administration Classifier: Topic :: Utilities -Requires-Python: >=3.6 +Requires-Python: >=3.7 Provides-Extra: testing Provides-Extra: docs Provides-Extra: ssl diff --git a/pytest.ini b/pytest.ini index 8cc1052..5c0ad03 100644 --- a/pytest.ini +++ b/pytest.ini @@ -12,8 +12,6 @@ filterwarnings= ## 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 diff --git a/setup.cfg b/setup.cfg index 7f7f682..a688812 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [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 @@ -22,7 +22,7 @@ project_urls = [options] packages = find_namespace: -python_requires = >=3.6 +python_requires = >=3.7 install_requires = [options.packages.find] diff --git a/setuptools.egg-info/PKG-INFO b/setuptools.egg-info/PKG-INFO index 7752367..0fca7f0 100644 --- a/setuptools.egg-info/PKG-INFO +++ b/setuptools.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: setuptools -Version: 59.6.0 +Version: 59.7.0 Summary: Easily download, build, install, upgrade, and uninstall Python packages Home-page: https://github.com/pypa/setuptools Author: Python Packaging Authority @@ -18,7 +18,7 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules Classifier: Topic :: System :: Archiving :: Packaging Classifier: Topic :: System :: Systems Administration Classifier: Topic :: Utilities -Requires-Python: >=3.6 +Requires-Python: >=3.7 Provides-Extra: testing Provides-Extra: docs Provides-Extra: ssl diff --git a/setuptools/tests/test_develop.py b/setuptools/tests/test_develop.py index 70c5794..1aeb7ff 100644 --- a/setuptools/tests/test_develop.py +++ b/setuptools/tests/test_develop.py @@ -219,6 +219,6 @@ class TestNamespaces: # 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) -- 2.7.4