Skip to content

Commit 5537373

Browse files
authored
upgrade python version to 3.12.7 (#258)
1 parent bca7d1e commit 5537373

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.11.2
1+
3.12.7

examples/simple/docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: "3.2"
21
services:
32
zero:
43
image: dgraph/dgraph:latest

examples/tls/docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: "3.5"
21
services:
32
zero1:
43
image: dgraph/dgraph:latest

pyproject.toml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools==75.6.0"]
2+
requires = ["setuptools>=75.6.0"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
@@ -17,11 +17,16 @@ classifiers=[
1717
'Operating System :: OS Independent',
1818
'Topic :: Database',
1919
'Topic :: Software Development',
20+
'Programming Language :: Python :: 3.7',
21+
'Programming Language :: Python :: 3.8',
22+
'Programming Language :: Python :: 3.9',
23+
'Programming Language :: Python :: 3.10',
2024
'Programming Language :: Python :: 3.11',
25+
'Programming Language :: Python :: 3.12',
2126
]
2227
dependencies = [
23-
"grpcio>=1.54.3,<2.0.0",
24-
"protobuf>=4.22.3,<6.0.0"
28+
"grpcio>=1.56.0,<2.0.0",
29+
"protobuf>=4.23.0,<6.0.0"
2530
]
2631
dynamic = ["version"]
2732

@@ -30,11 +35,10 @@ version = {attr = "pydgraph.meta.VERSION"}
3035

3136
[project.optional-dependencies]
3237
dev = [
33-
"build==1.2.2.post1",
34-
"grpcio-tools==1.68.0",
35-
"pytest==8.3.3",
38+
"build>=1.2.2.post1",
39+
"grpcio-tools>=1.68.0",
40+
"pytest>=8.3.3",
3641
]
3742

3843
[project.urls]
3944
"Homepage" = "https://github.com/dgraph-io/pydgraph"
40-

tests/docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: "3.5"
21
services:
32
alpha1:
43
image: dgraph/dgraph:${DGRAPH_IMAGE_TAG:-latest}

0 commit comments

Comments
 (0)