Skip to content

Commit 58c3814

Browse files
committed
DEP: add extra to have compatible versions of numpy and pandas
1 parent 0e18e99 commit 58c3814

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

pyproject.toml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ build-backend = "setuptools.build_meta"
66
name = "fair-mango"
77
dynamic = ["version"]
88
dependencies = [
9-
"numpy>=1.19.5",
10-
"pandas~=1.5",
9+
"numpy",
10+
"pandas",
1111
"scikit-learn>=1.1.3",
1212
]
1313
requires-python = ">=3.10"
@@ -44,6 +44,14 @@ Changelog = "https://github.com/datategy/Fair-Mango/blob/main/CHANGELOG.md"
4444
dev = [
4545
"twine",
4646
]
47+
old-pandas = [
48+
"pandas<2.2.0",
49+
"numpy<2.0",
50+
]
51+
new-pandas = [
52+
"pandas>=2.2.0",
53+
"numpy>=2.0",
54+
]
4755

4856
[tool.setuptools.dynamic]
4957
version = {attr = "fair_mango.__version__"}

0 commit comments

Comments
 (0)