From 7590f3806f789a87d57f956203425140c74ccd94 Mon Sep 17 00:00:00 2001 From: Kevin Johnson Date: Tue, 2 Jul 2024 13:32:56 -0700 Subject: [PATCH] BUG GA numpy versioning fix A --- README.md | 5 +++-- setup.py | 6 +++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index eed19b45..d760f402 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- Pandas TA + Pandas TA

# Pandas TA @@ -90,7 +90,7 @@ $ pip install git+https://github.com/twopirllc/pandas-ta ```sh $ pip install -U git+https://github.com/twopirllc/pandas-ta.git@development ``` -* The _development_ version, _0.4.18b_, includes _numerous_ bug fixes, speed improvements and better documentation since release, _0.3.14b_. +* The _development_ version includes _numerous_ bug fixes, speed improvements and better documentation since release, _0.3.14b_. ### Local Installation Click on green [<> Code](https://github.com/twopirllc/pandas-ta) button to download the source zip and unzip in your application directory. Then perform a local install. @@ -113,6 +113,7 @@ Thank you all for your help! It has been and continues to be integral to this pr + Made with [contrib.rocks](https://contrib.rocks).
diff --git a/setup.py b/setup.py index a4791329..1a4a6855 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ "pandas_ta.volatility", "pandas_ta.volume" ], - version=".".join(("0", "4", "18b")), + version=".".join(("0", "4", "19b")), description=long_description, long_description=long_description, author="Kevin Johnson", @@ -55,7 +55,7 @@ }, install_requires=[ "numba>=0.59.0", - "numpy>=1.26.4", + "numpy<=2", "pandas>=2.2.0", "pandas-datareader", "scipy>=1.12" @@ -72,7 +72,7 @@ ], "test": [ "numba>=0.59.0", - "numpy>=1.26.4", + "numpy<=2", "pandas_datareader>=0.10.0", "pytest==7.1.2", "TA-Lib>=0.4.28",