Skip to content

Commit 6da2c9e

Browse files
authored
Merge branch 'main' into chore/release-2.3.0
2 parents f16f2a5 + 7a38e85 commit 6da2c9e

2 files changed

Lines changed: 10 additions & 9 deletions

File tree

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ dependencies = [
2525
"Authlib >=1.3.0, <2.0",
2626
"pyjwt >=2.10.0, <3.0",
2727
"requests ~=2.32.5; python_version < '3.10'",
28-
"requests ~=2.34.0; python_version >= '3.10'",
28+
"requests ~=2.34.2; python_version >= '3.10'",
2929
"typing-extensions >=4.11.0, <5.0",
3030
"frozendict >=2.4.3, <3.0",
3131
"certifi >=2026.1.4",
3232
"PyYAML >=6.0.1, <7.0.0",
33-
"cryptography >=43.0.1, <47.0",
33+
"cryptography >=48.0.1, <48.1",
3434
"python-dotenv >=1.0.0, <2.0.0",
3535
"itsdangerous >=2.2.0, <3.0.0",
3636
"nest-asyncio >=1.5.8, <2.0.0",
@@ -55,8 +55,8 @@ dev = [
5555
"pytest-django >=4.5.2",
5656
"mypy >=1.5.0",
5757
"bandit >=1.7",
58-
"pylint >=4.0.0; python_version >= '3.10'",
59-
"pylint >=3.3.0, <4.0.0; python_version < '3.10'",
58+
"pylint >=4.0.5, <4.1.0; python_version >= '3.10'",
59+
"pylint >=3.3.9, <4.0.0; python_version < '3.10'",
6060
"pycodestyle >=2.0",
6161
"pytest-asyncio >=0.26.0",
6262
"pytest-timeout >=2.2.0",
@@ -95,8 +95,8 @@ pytest-django = "^4.5.2"
9595
mypy = "^1.5.0"
9696
bandit = "^1.7"
9797
pylint = [
98-
{version = ">=3.3.0,<4.0.0", python = "~3.9"},
99-
{version = ">=4.0.0", python = ">=3.10"}
98+
{version = ">=3.3.9,<4.0.0", python = "~3.9"},
99+
{version = ">=4.0.5,<4.1.0", python = ">=3.10"}
100100
]
101101
pycodestyle = "^2.0"
102102
pytest-asyncio = "^0.26.0"

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
requests~=2.32.5; python_version < "3.10"
2-
requests~=2.34.0; python_version >= "3.10"
2+
requests~=2.34.2; python_version >= "3.10"
33
# Core dependencies
4-
django>=4.2.0,<5.0.0
4+
django>=4.2.0,<5.0.0; python_version < "3.12"
5+
django>=6.0.6,<6.1.0; python_version >= "3.12"
56
python-dotenv>=1.0.0
6-
cryptography>=46.0.6,<47.0
7+
cryptography>=48.0.1,<48.1
78
pyjwt>=2.10.0
89
fastapi>=0.110.0
910
flask>=3.0.0

0 commit comments

Comments
 (0)