Skip to content

Commit 9216ec0

Browse files
committed
add minimum versions to dependencies
1 parent 092e34f commit 9216ec0

1 file changed

Lines changed: 11 additions & 10 deletions

File tree

pyproject.toml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,29 @@ authors = [
1111
description = "Utilities to support building and analyzing the MIMIC database(s)"
1212
readme = "README_mimic_utils.md"
1313
license = { file="LICENSE" }
14-
requires-python = ">=3.8"
14+
requires-python = ">=3.9"
1515
classifiers = [
1616
"Programming Language :: Python :: 3",
1717
"License :: OSI Approved :: Apache Software License",
1818
"Operating System :: OS Independent",
1919
]
2020
dependencies = [
21-
"sqlglot==30.11.0",
22-
"pandas",
23-
"numpy",
21+
"sqlglot~=30.11",
22+
"pandas>=1.3",
23+
"numpy>=1.21",
24+
"tqdm>=4.60",
2425
]
2526

2627
[project.optional-dependencies]
2728
test = [
28-
"pytest",
29-
"duckdb",
29+
"pytest>=7",
30+
"duckdb>=0.9",
3031
]
3132
equivalence = [
32-
"duckdb",
33-
"psycopg2-binary",
34-
"pandas",
35-
"numpy",
33+
"duckdb>=0.9",
34+
"psycopg2-binary>=2.9",
35+
"pandas>=1.3",
36+
"numpy>=1.21",
3637
]
3738

3839
[project.scripts]

0 commit comments

Comments
 (0)