Imported Upstream version 59.7.0 upstream/59.7.0
authorDongHun Kwak <dh0128.kwak@samsung.com>
Mon, 18 Jul 2022 06:39:05 +0000 (15:39 +0900)
committerDongHun Kwak <dh0128.kwak@samsung.com>
Mon, 18 Jul 2022 06:39:05 +0000 (15:39 +0900)
CHANGES.rst
PKG-INFO
pytest.ini
setup.cfg
setuptools.egg-info/PKG-INFO
setuptools/tests/test_develop.py

index 9b38064..5c898fa 100644 (file)
@@ -1,3 +1,12 @@
+v59.7.0
+-------
+
+
+Changes
+^^^^^^^
+* #2930: Require Python 3.7
+
+
 v59.6.0
 -------
 
index 7752367..0fca7f0 100644 (file)
--- 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
index 8cc1052..5c0ad03 100644 (file)
@@ -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
index 7f7f682..a688812 100644 (file)
--- 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]
index 7752367..0fca7f0 100644 (file)
@@ -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
index 70c5794..1aeb7ff 100644 (file)
@@ -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)