Skip to content

Commit 8115fe4

Browse files
committed
Include tox in dev dependencies
with min version supporting dependency groups from toml
1 parent cba937c commit 8115fe4

File tree

1 file changed

+12
-16
lines changed

1 file changed

+12
-16
lines changed

pyproject.toml

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ dependencies = [
3737
"typing-extensions >= 4.0, < 5.0",
3838
"requests",
3939
"tenacity >= 9.0",
40-
"pydantic >= 2.11"
40+
"pydantic >= 2.11",
4141
]
4242

4343
[project.urls]
@@ -56,9 +56,10 @@ rust-ext = ["neo4j-rust-ext >= 4.4.12, < 7.0"]
5656
# To install all development dependencies,
5757
# run `pip install --group dev -e .` inside repository root folder.#
5858
dev = [
59-
{include-group = "dev-base"},
60-
{include-group = "test"},
61-
{include-group = "docs-ci"}
59+
"tox>4.24",
60+
{ include-group = "dev-base" },
61+
{ include-group = "test" },
62+
{ include-group = "docs-ci" },
6263
]
6364

6465

@@ -74,37 +75,34 @@ dev-base = [
7475
"types-requests",
7576
"types-tqdm",
7677
"types-python-dateutil",
77-
"python-dotenv==1.1.0"
78+
"python-dotenv==1.1.0",
7879
]
7980
test = [
8081
"pytest == 8.3.3",
8182
"requests_mock == 1.11.0",
8283
"pytest_mock == 3.15.1",
8384
"testcontainers >= 4.0, < 4.13.0",
84-
"python-dateutil >= 2.9"
85+
"python-dateutil >= 2.9",
8586
]
8687
docs-ci = [
8788
"sphinx == 7.3.7",
8889
"enum-tools[sphinx] == 0.12.0",
89-
"autodoc_pydantic"
90+
"autodoc_pydantic",
9091
]
9192
notebook-base = [
9293
"nbconvert==7.16.4",
9394
"nbformat==5.10.4",
9495
"nbclient==0.10.2",
9596
"ipykernel==6.29.5",
9697
]
97-
notebook-aura-ci = [
98-
{include-group = "notebook-base"},
99-
"python-dotenv==1.1.0"
100-
]
98+
notebook-aura-ci = [{ include-group = "notebook-base" }, "python-dotenv==1.1.0"]
10199
notebook-ci = [
102-
{include-group = "notebook-base"},
100+
{ include-group = "notebook-base" },
103101
"scipy == 1.14.0",
104102
"torch==2.3.0",
105103
"torch-scatter==2.1.1",
106104
"torch-sparse==0.6.17",
107-
"torch-geometric>=2.5.0"
105+
"torch-geometric>=2.5.0",
108106
]
109107

110108
publish = ["build", "twine"]
@@ -116,9 +114,7 @@ zip-safe = false
116114

117115
[tool.setuptools.packages.find]
118116
where = ["src"]
119-
include = [
120-
"graphdatascience*",
121-
]
117+
include = ["graphdatascience*"]
122118

123119
[tool.setuptools.dynamic]
124120
version = { attr = "graphdatascience.version.__version__" }

0 commit comments

Comments
 (0)