Skip to content

Commit be8d9f1

Browse files
committed
Upgrade to numpy 2.0
1 parent 5118131 commit be8d9f1

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.5.0
2+
=====
3+
4+
- [NEW]: Upgrade to Numpy 2.0
5+
16
0.4.33
27
======
38

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[project]
22
name = "ta-lib"
3-
version = "0.4.33"
3+
version = "0.5.0"
44
dynamic = ["authors", "classifiers", "dependencies", "description", "license", "readme"]
55

66
[build-system]
7-
requires = ["setuptools >= 51.0.0", "wheel", "numpy<2.0.0"]
7+
requires = ["setuptools >= 51.0.0", "wheel", "numpy"]
88
build-backend = "setuptools.build_meta:__legacy__"

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
numpy<2.0.0
1+
numpy
22
Cython

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def build_extensions(self):
143143

144144
setup(
145145
name='TA-Lib',
146-
version='0.4.33',
146+
version='0.5.0',
147147
description='Python wrapper for TA-Lib',
148148
long_description=long_description,
149149
long_description_content_type='text/markdown',

talib/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def wrapper(*args, **kwds):
132132
setattr(stream, func_name, wrapped_func)
133133
globals()[stream_func_name] = wrapped_func
134134

135-
__version__ = '0.4.33'
135+
__version__ = '0.5.0'
136136

137137
# In order to use this python library, talib (i.e. this __file__) will be
138138
# imported at some point, either explicitly or indirectly via talib.func

0 commit comments

Comments
 (0)