Skip to content

Commit 7f46215

Browse files
committed
[deps] Use constraint-dependencies for cryptography
1 parent c2c4d3e commit 7f46215

3 files changed

Lines changed: 148 additions & 105 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ filterwarnings = [
121121

122122
[tool.uv]
123123
environments = ["python_version >= '3.9' and python_version < '3.14' and platform_python_implementation == 'CPython'"]
124+
constraint-dependencies = ["cryptography>=46.0.5"]
124125

125126
[tool.poe.tasks]
126127
snyk-requirements = "uv export --all-extras --no-hashes > snyk-requirements.txt"

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ certifi==2025.8.3 ; python_full_version < '3.14' and platform_python_implementat
1616
# httpcore
1717
# httpx
1818
# requests
19-
cffi==1.17.1 ; python_full_version < '3.14' and platform_python_implementation == 'CPython'
19+
cffi==2.0.0 ; python_full_version < '3.14' and platform_python_implementation == 'CPython'
2020
# via cryptography
2121
cfgv==3.4.0 ; python_full_version < '3.14' and platform_python_implementation == 'CPython'
2222
# via pre-commit
@@ -28,7 +28,7 @@ coverage==7.10.7 ; python_full_version < '3.10' and platform_python_implementati
2828
# via pytest-cov
2929
coverage==7.11.0 ; python_full_version >= '3.10' and python_full_version < '3.14' and platform_python_implementation == 'CPython'
3030
# via pytest-cov
31-
cryptography==45.0.6 ; python_full_version < '3.14' and platform_python_implementation == 'CPython'
31+
cryptography==46.0.5 ; python_full_version < '3.14' and platform_python_implementation == 'CPython'
3232
# via
3333
# authlib
3434
# secretstorage
@@ -133,7 +133,7 @@ pluggy==1.6.0 ; python_full_version < '3.14' and platform_python_implementation
133133
pre-commit==4.3.0 ; python_full_version < '3.14' and platform_python_implementation == 'CPython'
134134
propcache==0.3.2 ; python_full_version < '3.14' and platform_python_implementation == 'CPython'
135135
# via yarl
136-
pycparser==2.22 ; python_full_version < '3.14' and platform_python_implementation == 'CPython'
136+
pycparser==2.22 ; python_full_version < '3.14' and implementation_name != 'PyPy' and platform_python_implementation == 'CPython'
137137
# via cffi
138138
pydantic==2.12.4 ; python_full_version < '3.14' and platform_python_implementation == 'CPython'
139139
# via pyatlan
@@ -207,6 +207,7 @@ types-setuptools==80.9.0.20250822 ; python_full_version < '3.14' and platform_py
207207
typing-extensions==4.14.1 ; python_full_version < '3.14' and platform_python_implementation == 'CPython'
208208
# via
209209
# anyio
210+
# cryptography
210211
# exceptiongroup
211212
# multidict
212213
# mypy

0 commit comments

Comments
 (0)