Skip to content

Commit

Permalink
possibly fix issues building against numpy2
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjbq7 committed Feb 9, 2025
1 parent 1ecef71 commit 2ffcf42
Show file tree
Hide file tree
Showing 5 changed files with 8,860 additions and 10,896 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.6.3
=====

- [FIX]: Fix issue building against numpy2

0.6.2
=====

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ta-lib"
version = "0.6.2"
version = "0.6.3"
dynamic = ["authors", "classifiers", "description", "license", "readme"]
dependencies = [
"setuptools",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def build_extensions(self):

setup(
name='TA-Lib',
version='0.6.2',
version='0.6.3',
description='Python wrapper for TA-Lib',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down
2 changes: 1 addition & 1 deletion talib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def wrapper(*args, **kwds):
setattr(stream, func_name, wrapped_func)
globals()[stream_func_name] = wrapped_func

__version__ = '0.6.2'
__version__ = '0.6.3'

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

0 comments on commit 2ffcf42

Please sign in to comment.