Skip to content

Commit 5d505b3

Browse files
committed
Temporarily remove dependency lower limit
1 parent 20f195d commit 5d505b3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

distclassipy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
)
2929
from .distances import _ALL_METRICS, _UNIQUE_METRICS
3030

31-
__version__ = "0.2.2a3"
31+
__version__ = "0.2.2a4"
3232

3333
__all__ = [
3434
"DistanceMetricClassifier",

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "distclassipy"
77
dynamic = ["version"]
88
description = "A python package for a distance-based classifier which can use several different distance metrics."
99
readme = "README.md"
10-
requires-python = ">=3.10"
10+
requires-python = ">=3.7"
1111
license = {file = "LICENSE"}
1212
authors = [{name = "Siddharth Chaini", email = "sidchaini@gmail.com"}]
1313
classifiers = [
@@ -23,10 +23,10 @@ classifiers = [
2323
"Operating System :: OS Independent"
2424
]
2525
dependencies = [
26-
"joblib>=1.3.2",
27-
"numpy>=1.25.2",
28-
"pandas>=2.0.3",
29-
"scikit-learn>=1.2.2"
26+
"joblib",
27+
"numpy",
28+
"pandas",
29+
"scikit-learn"
3030
]
3131

3232
[tool.setuptools.dynamic]

0 commit comments

Comments
 (0)