Skip to content

Commit dcf5f55

Browse files
authored
fix: exclude pymongo 4.15.0 due to a known issue (#1225)
1 parent 415c319 commit dcf5f55

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ classifiers = [
2525
dependencies = [
2626
"pydantic>=1.10.18,<3.0",
2727
"click>=7",
28-
"lazy-model>=0.4.0, <1.0.0",
29-
"pymongo>=4.11.0,<5.0.0",
28+
"lazy-model>=0.4.0,<1.0.0",
29+
"pymongo>=4.11.0,!=4.15.0,<5.0.0",
3030
"typing-extensions>=4.7",
3131
]
3232

@@ -60,12 +60,12 @@ ci = [
6060
"requests",
6161
"types-requests",
6262
]
63-
aws = ["pymongo[aws]>=4.11.0,<5.0.0"]
64-
encryption = ["pymongo[encryption]>=4.11.0,<5.0.0"]
65-
gssapi = ["pymongo[gssapi]>=4.11.0,<5.0.0"]
66-
ocsp = ["pymongo[ocsp]>=4.11.0,<5.0.0"]
67-
snappy = ["pymongo[snappy]>=4.11.0,<5.0.0"]
68-
zstd = ["pymongo[zstd]>=4.11.0,<5.0.0"]
63+
aws = ["pymongo[aws]>=4.11.0,!=4.15.0,<5.0.0"]
64+
encryption = ["pymongo[encryption]>=4.11.0,!=4.15.0,<5.0.0"]
65+
gssapi = ["pymongo[gssapi]>=4.11.0,!=4.15.0,<5.0.0"]
66+
ocsp = ["pymongo[ocsp]>=4.11.0,!=4.15.0,<5.0.0"]
67+
snappy = ["pymongo[snappy]>=4.11.0,!=4.15.0,<5.0.0"]
68+
zstd = ["pymongo[zstd]>=4.11.0,!=4.15.0,<5.0.0"]
6969

7070
[project.urls]
7171
homepage = "https://beanie-odm.dev"

0 commit comments

Comments
 (0)