Mark that check-sdist is a Python 3.8+ only dependency (#11499)

It has no versions that support Python 3.7. This is necessary to support using `uv` to manage our ci-constraints file
This commit is contained in:
Alex Gaynor 2024-08-28 23:09:28 -04:00 committed by GitHub
parent 467ffb0258
commit c0d077973e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -78,7 +78,7 @@ docs = ["sphinx >=5.3.0", "sphinx-rtd-theme >=1.1.1"]
docstest = ["pyenchant >=1.6.11", "readme-renderer", "sphinxcontrib-spelling >=4.0.1"]
sdist = ["build"]
# `click` included because its needed to type check `release.py`
pep8test = ["ruff", "mypy", "check-sdist", "click"]
pep8test = ["ruff", "mypy", "check-sdist; python_version >= '3.8'", "click"]
[tool.maturin]
python-source = "src"