Imported Upstream version 59.0.1 upstream/59.0.1
authorJinWang An <jinwang.an@samsung.com>
Mon, 27 Mar 2023 08:02:38 +0000 (17:02 +0900)
committerJinWang An <jinwang.an@samsung.com>
Mon, 27 Mar 2023 08:02:38 +0000 (17:02 +0900)
.bumpversion.cfg
CHANGES.rst
setup.cfg
tox.ini

index 2bcedf6c515721d239c81826ce8e4045dae50d5d..3be75098a015a96f36a2fe224cb38168ff3a0e03 100644 (file)
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 59.0.0
+current_version = 59.0.1
 commit = True
 tag = True
 
index 0caed6613366fc0eb2d4190e36d8963e128f647b..2ba544108038a133c263000a2790642337b8aa4d 100644 (file)
@@ -1,3 +1,14 @@
+v59.0.1
+-------
+
+
+Misc
+^^^^
+* #2880: Removed URL requirement for ``pytest-virtualenv`` in ``setup.cfg``.
+  PyPI rejects packages with dependencies external to itself.
+  Instead the test dependency was overwritten via ``tox.ini``
+
+
 v59.0.0
 -------
 
index 6bcc36968e80231d9f1f05dd6c445a9d2fa3d0d9..088f54d64fc831b66cea4d52a4d33b51a9656615 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,6 @@
 [metadata]
 name = setuptools
-version = 59.0.0
+version = 59.0.1
 author = Python Packaging Authority
 author_email = distutils-sig@python.org
 description = Easily download, build, install, upgrade, and uninstall Python packages
@@ -55,7 +55,7 @@ testing =
        mock
        flake8-2020
        virtualenv>=13.0.0
-       pytest-virtualenv @ git+https://github.com/jaraco/pytest-plugins@distutils-deprecated#subdirectory=pytest-virtualenv
+       pytest-virtualenv>=1.2.7  # TODO: Update once man-group/pytest-plugins#188 is solved
        wheel
        paver
        pip>=19.1 # For proper file:// URLs support.
diff --git a/tox.ini b/tox.ini
index ab993608afac9dcf7eb482cb88c4962243480d15..25b4eaf018237223619e449e4a7a2e591d9d640e 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -10,6 +10,8 @@ deps =
        # workaround for sphinx-doc/sphinx#9562
        # TODO: remove after Sphinx>4.1.2 is available.
        sphinx@git+https://github.com/sphinx-doc/sphinx; python_version>="3.10"
+       # TODO: remove after man-group/pytest-plugins#188 is solved
+       pytest-virtualenv @ git+https://github.com/jaraco/pytest-plugins@distutils-deprecated#subdirectory=pytest-virtualenv
 commands =
        pytest {posargs}
 usedevelop = True