We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e533f47 commit 6f2ba3aCopy full SHA for 6f2ba3a
pyproject.toml
@@ -6,8 +6,8 @@ build-backend = "setuptools.build_meta"
6
name = "fair-mango"
7
dynamic = ["version"]
8
dependencies = [
9
- "numpy>=1.19.5",
10
- "pandas~=1.5",
+ "numpy",
+ "pandas",
11
"scikit-learn>=1.1.3",
12
]
13
requires-python = ">=3.10"
@@ -44,6 +44,14 @@ Changelog = "https://github.com/datategy/Fair-Mango/blob/main/CHANGELOG.md"
44
dev = [
45
"twine",
46
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
55
56
[tool.setuptools.dynamic]
57
version = {attr = "fair_mango.__version__"}
0 commit comments