Skip to content

Commit ebc9aa6

Browse files
committed
Losen dependency versions
1 parent 8788679 commit ebc9aa6

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

pyindicators/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .indicators import sma, rsi, ema, wilders_rsi, \
1+
from .indicators import sma, rsi, ema, wilders_rsi, adx, \
22
crossover, is_crossover, wma, macd, willr, is_crossunder, crossunder
33

44
__all__ = [
@@ -13,5 +13,6 @@
1313
'rsi',
1414
"wilders_rsi",
1515
'macd',
16-
'willr'
16+
'willr',
17+
'adx',
1718
]

pyindicators/indicators/__init__.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
from .rsi import rsi, wilders_rsi
77
from .macd import macd
88
from .williams_percent_range import willr
9+
from .adx import adx
10+
from .utils import get_peaks, is_divergence, is_lower_low_detected
11+
912

1013
__all__ = [
1114
'sma',
@@ -18,5 +21,9 @@
1821
'rsi',
1922
'wilders_rsi',
2023
'macd',
21-
'willr'
24+
'willr',
25+
'adx',
26+
'get_peaks',
27+
'is_divergence',
28+
'is_lower_low_detected'
2229
]

pyproject.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ authors = ["Marc van Duyn"]
66
readme = "README.md"
77

88
[tool.poetry.dependencies]
9-
python = "^3.9"
10-
pandas = "^2.0.0"
11-
polars = "^1.0.0"
12-
numpy = "^1.26.4"
9+
python = ">=3.9"
10+
pandas = ">=2.0.0"
11+
polars = ">=1.0.0"
12+
numpy = ">=1.26.4"
13+
scipy = ">=1.15.1"
1314

1415
[tool.poetry.group.test.dependencies]
1516
coverage= "7.4.2"

0 commit comments

Comments
 (0)