Skip to content

Commit 6348f45

Browse files
chore(dependencies): update package versions in pyproject.toml and uv.lock
- Updated jdatetime to version 6.1.0 - Updated boto3 and boto3-stubs to version 1.43.72 - Updated httpx2 to version 2.10.0 - Updated sentry-sdk to version 2.68.0 - Updated sqlalchemy to version 2.0.52 - Updated types-protobuf to version 7.34.1.20260816 - Updated pre-commit to version 4.6.2 - Updated ruff to version 0.16.3 - Updated ty to version 0.0.72
1 parent 7df0e4d commit 6348f45

3 files changed

Lines changed: 254 additions & 201 deletions

File tree

archipy/adapters/email/adapters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def _process_file_source(source: str | bytes | BinaryIO | HttpUrl) -> bytes:
149149
if isinstance(source, str):
150150
return Path(source).read_bytes()
151151
if isinstance(source, os.PathLike):
152-
path_str: str = os.fspath(source) # ty: ignore[no-matching-overload]
152+
path_str: str = os.fspath(source)
153153
return Path(path_str).read_bytes()
154154
raise InvalidArgumentError(
155155
argument_name="source",

pyproject.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies = [
1212
"pydantic>=2.13.4",
1313
"pydantic-settings>=2.15.0",
1414
"requests>=2.34.2",
15-
"jdatetime>=6.0.2",
15+
"jdatetime>=6.1.0",
1616
]
1717
license = { file = "LICENSE" }
1818

@@ -31,20 +31,20 @@ grpc = ["grpcio>=1.83.0", "grpcio-health-checking>=1.83.0", "protobuf>=7.35.1"]
3131
jwt = ["pyjwt>=2.13.0"]
3232
kafka = ["confluent-kafka>=2.15.0"]
3333
keycloak = ["python-keycloak>=7.1.1", "cachetools>=7.1.7", "async-lru>=2.3.0"]
34-
minio = ["boto3>=1.43.67", "cachetools>=7.1.7", "async-lru>=2.3.0"]
34+
minio = ["boto3>=1.43.72", "cachetools>=7.1.7", "async-lru>=2.3.0"]
3535
parsian-ipg = ["zeep>=4.3.3", "requests[socks]>=2.34.2"]
36-
parsian-ipg-async = ["zeep[async]>=4.3.3", "httpx2[socks]>=2.9.1"]
36+
parsian-ipg-async = ["zeep[async]>=4.3.3", "httpx2[socks]>=2.10.0"]
3737
mysql = ["pymysql>=1.2.0"]
3838
mysql-async = ["asyncmy2>=0.2.21"]
3939
postgres = ["psycopg[binary,pool]>=3.3.4"]
4040
prometheus = ["prometheus-client>=0.26.0"]
4141
redis = ["redis[hiredis]>=8.1.0"]
42-
saman-ipg = ["httpx2[socks]>=2.9.1"]
42+
saman-ipg = ["httpx2[socks]>=2.10.0"]
4343
scheduler = ["apscheduler>=3.11.3"]
4444
scylladb = ["scylla-driver>=3.29.11", "lz4>=4.4.5", "cachetools>=7.1.7", "async-lru>=2.3.0"]
45-
sentry = ["sentry-sdk>=2.66.1"]
46-
sqlalchemy = ["sqlalchemy>=2.0.51"]
47-
sqlalchemy-async = ["sqlalchemy[asyncio]>=2.0.51"]
45+
sentry = ["sentry-sdk>=2.68.0"]
46+
sqlalchemy = ["sqlalchemy>=2.0.52"]
47+
sqlalchemy-async = ["sqlalchemy[asyncio]>=2.0.52"]
4848
starrocks = ["starrocks>=1.3.4", "pymysql>=1.2.0"]
4949
starrocks-async = ["starrocks>=1.3.4", "aiomysql>=0.3.2", "asyncmy2>=0.2.21"]
5050
temporalio = ["temporalio>=1.31.0"]
@@ -59,15 +59,15 @@ build-backend = "hatchling.build"
5959
dev = [
6060
"add-trailing-comma>=4.0.0",
6161
"bandit>=1.9.4",
62-
"boto3-stubs>=1.43.67",
62+
"boto3-stubs>=1.43.72",
6363
"codespell>=2.4.3",
6464
"pre-commit-hooks>=6.0.0",
65-
"pre-commit>=4.6.1",
66-
"ruff>=0.16.2",
67-
"ty>=0.0.69",
65+
"pre-commit>=4.6.2",
66+
"ruff>=0.16.3",
67+
"ty>=0.0.72",
6868
"types-cachetools>=7.0.0.20260713",
6969
"types-grpcio>=1.83.0.20260730",
70-
"types-protobuf>=7.34.1.20260518",
70+
"types-protobuf>=7.34.1.20260816",
7171
"types-pymysql>=1.2.0.20260807",
7272
"types-regex>=2026.7.19.20260720",
7373
"types-requests>=2.33.0.20260712",

0 commit comments

Comments
 (0)