From: JinWang An Date: Mon, 27 Mar 2023 08:02:38 +0000 (+0900) Subject: Imported Upstream version 59.0.1 X-Git-Tag: upstream/59.0.1^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=71819396044923aa7a2540018330725deea37e41;p=platform%2Fupstream%2Fpython-setuptools.git Imported Upstream version 59.0.1 --- diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2bcedf6..3be7509 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 59.0.0 +current_version = 59.0.1 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index 0caed66..2ba5441 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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 ------- diff --git a/setup.cfg b/setup.cfg index 6bcc369..088f54d 100644 --- 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 ab99360..25b4eaf 100644 --- 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