Skip to content

Commit

Permalink
Specify minimum versions for more deps (#11924)
Browse files Browse the repository at this point in the history
Right now our deps are basically wrong, and impossible to use with lowest version resolution. Let's start trying to specify minimums so our deps are properly accurate.
  • Loading branch information
alex authored Nov 11, 2024
1 parent 7a22df0 commit d251c8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ ssh = ["bcrypt >=3.1.5"]
nox = ["nox", "nox[uv] >=2024.03.02; python_version >= '3.8'"]
test = [
"cryptography_vectors",
"pytest >=6.2.0",
"pytest >=7.2.0",
"pytest-benchmark",
"pytest-cov",
"pytest-xdist",
Expand All @@ -76,7 +76,7 @@ test = [
test-randomorder = ["pytest-randomly"]
docs = ["sphinx >=5.3.0", "sphinx-rtd-theme >=3.0.0; python_version >= '3.8'"]
docstest = ["pyenchant >=1.6.11", "readme-renderer", "sphinxcontrib-spelling >=4.0.1"]
sdist = ["build"]
sdist = ["build >=1.0.0"]
# `click` included because its needed to type check `release.py`
pep8test = ["ruff", "mypy", "check-sdist; python_version >= '3.8'", "click"]

Expand Down

0 comments on commit d251c8a

Please sign in to comment.