From: DongHun Kwak Date: Mon, 18 Jul 2022 06:39:05 +0000 (+0900) Subject: Imported Upstream version 59.7.0 X-Git-Tag: upstream/59.7.0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Ftags%2Fupstream%2F59.7.0;p=platform%2Fupstream%2Fpython3-setuptools.git Imported Upstream version 59.7.0 --- 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)