Skip to content

Commit cd2550e

Browse files
authored
Specify minimum versions for more deps
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.
1 parent 28b9b26 commit cd2550e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ ssh = ["bcrypt >=3.1.5"]
6666
nox = ["nox", "nox[uv] >=2024.03.02; python_version >= '3.8'"]
6767
test = [
6868
"cryptography_vectors",
69-
"pytest >=6.2.0",
69+
"pytest >=7.2.0",
7070
"pytest-benchmark",
7171
"pytest-cov",
7272
"pytest-xdist",
@@ -76,7 +76,7 @@ test = [
7676
test-randomorder = ["pytest-randomly"]
7777
docs = ["sphinx >=5.3.0", "sphinx-rtd-theme >=3.0.0; python_version >= '3.8'"]
7878
docstest = ["pyenchant >=1.6.11", "readme-renderer", "sphinxcontrib-spelling >=4.0.1"]
79-
sdist = ["build"]
79+
sdist = ["build >=1.0.0"]
8080
# `click` included because its needed to type check `release.py`
8181
pep8test = ["ruff", "mypy", "check-sdist; python_version >= '3.8'", "click"]
8282

0 commit comments

Comments
 (0)