Skip to content

Commit 2ffcf42

Browse files
committed
possibly fix issues building against numpy2
1 parent 1ecef71 commit 2ffcf42

File tree

5 files changed

+8860
-10896
lines changed

5 files changed

+8860
-10896
lines changed

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.6.3
2+
=====
3+
4+
- [FIX]: Fix issue building against numpy2
5+
16
0.6.2
27
=====
38

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ta-lib"
3-
version = "0.6.2"
3+
version = "0.6.3"
44
dynamic = ["authors", "classifiers", "description", "license", "readme"]
55
dependencies = [
66
"setuptools",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def build_extensions(self):
151151

152152
setup(
153153
name='TA-Lib',
154-
version='0.6.2',
154+
version='0.6.3',
155155
description='Python wrapper for TA-Lib',
156156
long_description=long_description,
157157
long_description_content_type='text/markdown',

talib/__init__.py

Lines changed: 1 addition & 1 deletion
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.6.2'
135+
__version__ = '0.6.3'
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)