Skip to content

Commit 34be4e8

Browse files
authored
Merge pull request #8 from kjsanger/fix/pyproject-deps
Add version ranges to pyproject.toml
2 parents 582b25f + 18b0498 commit 34be4e8

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

pyproject.toml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ name = "npg-python-lib"
33
description = "A library of Python functions and classes common to NPG applications."
44
license = { file = "LICENSE", content-type = "text/plain" }
55
readme = { file = "README.md", content-type = "text/markdown" }
6-
authors = [{ name = "Keith James", email = "kdj@sanger.ac.uk" },
7-
{ name = "Michael Kubiak", email = "mk35@sanger.ac.uk" }]
6+
authors = [{ name = "Keith James", email = "kdj@sanger.ac.uk" }]
87
classifiers = [
98
"Development Status :: 5 - Production/Stable",
109
"Environment :: Console",
@@ -16,15 +15,15 @@ requires-python = ">=3.10"
1615
dynamic = ["version"]
1716

1817
dependencies = [
19-
"python-dateutil",
20-
"structlog",
18+
"python-dateutil >=2.9.0,<3",
19+
"structlog >=23.3.0",
2120
]
2221

2322
[project.optional-dependencies]
2423
test = [
25-
"black",
26-
"pytest",
27-
"pytest-it"
24+
"black >=24.3.0,<25",
25+
"pytest >=8.0,<9",
26+
"pytest-it >=0.1.5"
2827
]
2928

3029
[project.urls]

0 commit comments

Comments
 (0)