Skip to content

Commit 8212972

Browse files
committed
Upgrade dependency constraints in pyproject.toml
- gremlinpython: ==3.7.4 -> >=3.7.4,<4 (allows 3.8.0) - setuptools: >=42 -> >=70 in build-system.requires - cython: unversioned -> >=3.2 in dev dependencies - packaging: unversioned -> >=25.0 in dev dependencies - cryptography: >=35.0 -> >=42.0
1 parent bf0a4b3 commit 8212972

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ requires-python = ">=3.9"
3131
"Issues" = "https://github.com/scylladb/python-driver/issues"
3232

3333
[project.optional-dependencies]
34-
graph = ['gremlinpython==3.7.4']
35-
cle = ['cryptography>=35.0']
34+
graph = ['gremlinpython>=3.7.4,<4']
35+
cle = ['cryptography>=42.0']
3636
compress-lz4 = ['lz4']
3737
compress-snappy = ['python-snappy']
3838

@@ -46,8 +46,8 @@ dev = [
4646
"twisted[tls]",
4747
"gevent",
4848
"eventlet>=0.33.3",
49-
"cython",
50-
"packaging",
49+
"cython>=3.2",
50+
"packaging>=25.0",
5151
"futurist",
5252
"asynctest",
5353
"pyyaml",
@@ -75,7 +75,7 @@ version = { attr = "cassandra.__version__" } # any module attri
7575
readme = { file = "README.rst", content-type = "text/x-rst" }
7676

7777
[build-system]
78-
requires = ["setuptools>=42", "Cython"]
78+
requires = ["setuptools>=70", "Cython"]
7979

8080
build-backend = "setuptools.build_meta"
8181

0 commit comments

Comments
 (0)