Skip to content

Commit

Permalink
upgrade python version to 3.12.7 (#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
mangalaman93 authored Nov 28, 2024
1 parent bca7d1e commit 5537373
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.11.2
3.12.7
1 change: 0 additions & 1 deletion examples/simple/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.2"
services:
zero:
image: dgraph/dgraph:latest
Expand Down
1 change: 0 additions & 1 deletion examples/tls/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.5"
services:
zero1:
image: dgraph/dgraph:latest
Expand Down
18 changes: 11 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools==75.6.0"]
requires = ["setuptools>=75.6.0"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -17,11 +17,16 @@ classifiers=[
'Operating System :: OS Independent',
'Topic :: Database',
'Topic :: Software Development',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
dependencies = [
"grpcio>=1.54.3,<2.0.0",
"protobuf>=4.22.3,<6.0.0"
"grpcio>=1.56.0,<2.0.0",
"protobuf>=4.23.0,<6.0.0"
]
dynamic = ["version"]

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

[project.optional-dependencies]
dev = [
"build==1.2.2.post1",
"grpcio-tools==1.68.0",
"pytest==8.3.3",
"build>=1.2.2.post1",
"grpcio-tools>=1.68.0",
"pytest>=8.3.3",
]

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

1 change: 0 additions & 1 deletion tests/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.5"
services:
alpha1:
image: dgraph/dgraph:${DGRAPH_IMAGE_TAG:-latest}
Expand Down

0 comments on commit 5537373

Please sign in to comment.