ta-lib 0.4.34__tar.gz → 0.5.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ta_lib-0.4.34 → ta_lib-0.5.1}/PKG-INFO +7 -1
- {ta_lib-0.4.34 → ta_lib-0.5.1}/README.md +6 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/pyproject.toml +2 -2
- {ta_lib-0.4.34 → ta_lib-0.5.1}/setup.py +1 -1
- {ta_lib-0.4.34 → ta_lib-0.5.1}/ta_lib.egg-info/PKG-INFO +7 -1
- {ta_lib-0.4.34 → ta_lib-0.5.1}/talib/__init__.py +1 -1
- {ta_lib-0.4.34 → ta_lib-0.5.1}/talib/_ta_lib.c +2273 -4273
- {ta_lib-0.4.34 → ta_lib-0.5.1}/AUTHORS +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/COPYRIGHT +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/LICENSE +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/MANIFEST.in +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/setup.cfg +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/ta_lib.egg-info/SOURCES.txt +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/ta_lib.egg-info/dependency_links.txt +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/ta_lib.egg-info/requires.txt +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/ta_lib.egg-info/top_level.txt +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/talib/_abstract.pxi +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/talib/_common.pxi +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/talib/_func.pxi +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/talib/_stream.pxi +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/talib/_ta_lib.pyx +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/talib/abstract.py +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/talib/deprecated.py +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/talib/stream.py +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/tests/conftest.py +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/tests/test_abstract.py +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/tests/test_func.py +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/tests/test_pandas.py +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/tests/test_polars.py +0 -0
- {ta_lib-0.4.34 → ta_lib-0.5.1}/tests/test_stream.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ta-lib
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.5.1
|
4
4
|
Summary: Python wrapper for TA-Lib
|
5
5
|
Home-page: http://github.com/ta-lib/ta-lib-python
|
6
6
|
Download-URL: https://github.com/ta-lib/ta-lib-python/releases
|
@@ -370,6 +370,12 @@ Then, perhaps you can use the ``--hidden-import`` argument to fix this:
|
|
370
370
|
$ pyinstaller --hidden-import talib.stream "replaceToYourFileName.py"
|
371
371
|
```
|
372
372
|
|
373
|
+
---
|
374
|
+
|
375
|
+
If you want to use ``numpy<2``, then you should use ``ta-lib<0.5``.
|
376
|
+
|
377
|
+
If you want to use ``numpy>=2``, then you should use ``ta-lib>=0.5``.
|
378
|
+
|
373
379
|
## Function API
|
374
380
|
|
375
381
|
Similar to TA-Lib, the Function API provides a lightweight wrapper of the
|
@@ -329,6 +329,12 @@ Then, perhaps you can use the ``--hidden-import`` argument to fix this:
|
|
329
329
|
$ pyinstaller --hidden-import talib.stream "replaceToYourFileName.py"
|
330
330
|
```
|
331
331
|
|
332
|
+
---
|
333
|
+
|
334
|
+
If you want to use ``numpy<2``, then you should use ``ta-lib<0.5``.
|
335
|
+
|
336
|
+
If you want to use ``numpy>=2``, then you should use ``ta-lib>=0.5``.
|
337
|
+
|
332
338
|
## Function API
|
333
339
|
|
334
340
|
Similar to TA-Lib, the Function API provides a lightweight wrapper of the
|
@@ -1,8 +1,8 @@
|
|
1
1
|
[project]
|
2
2
|
name = "ta-lib"
|
3
|
-
version = "0.
|
3
|
+
version = "0.5.1"
|
4
4
|
dynamic = ["authors", "classifiers", "dependencies", "description", "license", "readme"]
|
5
5
|
|
6
6
|
[build-system]
|
7
|
-
requires = ["setuptools >= 51.0.0", "wheel", "numpy
|
7
|
+
requires = ["setuptools >= 51.0.0", "wheel", "numpy"]
|
8
8
|
build-backend = "setuptools.build_meta:__legacy__"
|
@@ -143,7 +143,7 @@ with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
|
|
143
143
|
|
144
144
|
setup(
|
145
145
|
name='TA-Lib',
|
146
|
-
version='0.
|
146
|
+
version='0.5.1',
|
147
147
|
description='Python wrapper for TA-Lib',
|
148
148
|
long_description=long_description,
|
149
149
|
long_description_content_type='text/markdown',
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ta-lib
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.5.1
|
4
4
|
Summary: Python wrapper for TA-Lib
|
5
5
|
Home-page: http://github.com/ta-lib/ta-lib-python
|
6
6
|
Download-URL: https://github.com/ta-lib/ta-lib-python/releases
|
@@ -370,6 +370,12 @@ Then, perhaps you can use the ``--hidden-import`` argument to fix this:
|
|
370
370
|
$ pyinstaller --hidden-import talib.stream "replaceToYourFileName.py"
|
371
371
|
```
|
372
372
|
|
373
|
+
---
|
374
|
+
|
375
|
+
If you want to use ``numpy<2``, then you should use ``ta-lib<0.5``.
|
376
|
+
|
377
|
+
If you want to use ``numpy>=2``, then you should use ``ta-lib>=0.5``.
|
378
|
+
|
373
379
|
## Function API
|
374
380
|
|
375
381
|
Similar to TA-Lib, the Function API provides a lightweight wrapper of the
|
@@ -132,7 +132,7 @@ for func_name, stream_func_name in zip(__TA_FUNCTION_NAMES__, stream_func_names)
|
|
132
132
|
setattr(stream, func_name, wrapped_func)
|
133
133
|
globals()[stream_func_name] = wrapped_func
|
134
134
|
|
135
|
-
__version__ = '0.
|
135
|
+
__version__ = '0.5.1'
|
136
136
|
|
137
137
|
# In order to use this python library, talib (i.e. this __file__) will be
|
138
138
|
# imported at some point, either explicitly or indirectly via talib.func
|