diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2022-05-09 10:42:04 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2022-05-09 10:42:56 -0400 |
| commit | 9116c7eb52504bec77d26881d2c28e427dc52143 (patch) | |
| tree | 6becb88401eb15bdff6fc924211894e6d9c277d1 /setup.cfg | |
| parent | 8d12d6196c369c7cf0164a1202e968dd68a2cb6c (diff) | |
| parent | e009a87b5578cb16099b697ba8395c8f6bdd70f3 (diff) | |
| download | python-setuptools-git-debt/remove-easy-install.tar.gz | |
Merge branch 'main' into debt/remove-easy-installdebt/remove-easy-install
Diffstat (limited to 'setup.cfg')
| -rw-r--r-- | setup.cfg | 35 |
1 files changed, 27 insertions, 8 deletions
@@ -1,6 +1,6 @@ [metadata] name = setuptools -version = 59.2.0 +version = 62.1.0 author = Python Packaging Authority author_email = distutils-sig@python.org description = Easily download, build, install, upgrade, and uninstall Python packages @@ -24,7 +24,7 @@ project_urls = packages = find_namespace: # disabled as it causes tests to be included #2505 # include_package_data = true -python_requires = >=3.6 +python_requires = >=3.7 install_requires = [options.packages.find] @@ -34,6 +34,7 @@ exclude = docs* tests* *.tests + *.tests.* tools* [options.extras_require] @@ -45,34 +46,52 @@ testing = pytest-black >= 0.3.7; \ # workaround for jaraco/skeleton#22 python_implementation != "PyPy" - pytest-cov - pytest-mypy; \ + pytest-cov; \ + # coverage seems to make PyPy extremely slow + python_implementation != "PyPy" + pytest-mypy >= 0.9.1; \ # workaround for jaraco/skeleton#22 python_implementation != "PyPy" pytest-enabler >= 1.0.1 + pytest-perf # local mock flake8-2020 virtualenv>=13.0.0 - 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. jaraco.envs>=2.2 pytest-xdist - sphinx jaraco.path>=3.2.0 + build[virtualenv] + filelock>=3.4.0 + pip_run>=8.8 + ini2toml[lite]>=0.9 + tomli-w>=1.0.0 + +testing-integration = + pytest + pytest-xdist + pytest-enabler + virtualenv>=13.0.0 + tomli + wheel + jaraco.path>=3.2.0 + jaraco.envs>=2.2 + build[virtualenv] + filelock>=3.4.0 docs = # upstream sphinx - jaraco.packaging >= 8.2 + jaraco.packaging >= 9 rst.linker >= 1.9 jaraco.tidelift >= 1.4 # local pygments-github-lexers==0.0.5 + sphinx-favicon sphinx-inline-tabs sphinxcontrib-towncrier furo |
