Skip to content

Commit 3a31db2

Browse files
committed
fix lib name on windows
1 parent f29b252 commit 3a31db2

File tree

4 files changed

+25
-5
lines changed

4 files changed

+25
-5
lines changed

CHANGELOG

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33

44
- [FIX]: Make sure this wrapper works with TA-Lib 0.6.1 and newer releases.
55

6+
0.5.4
7+
=====
8+
9+
- [FIX]: Fix lib name on windows.
10+
611
0.5.3
712
=====
813

@@ -25,6 +30,21 @@
2530

2631
- [NEW]: Upgrade to Numpy 2.0
2732

33+
0.4.38
34+
======
35+
36+
- [FIX]: Fix lib name on windows.
37+
38+
0.4.37
39+
======
40+
41+
- [FIX]: Make sure to pin numpy<2 in the setup.py.
42+
43+
0.4.36
44+
======
45+
46+
- [BUG]: Make this release only support TA-Lib 0.4.0
47+
2848
0.4.35
2949
======
3050

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.5.3"
3+
version = "0.5.4"
44
dynamic = ["authors", "classifiers", "description", "license", "readme"]
55
dependencies = [
66
"setuptools",

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020

2121
platform_supported = False
2222

23+
lib_talib_name = 'ta_lib' # the name as of TA-Lib 0.4.0
24+
2325
if any(s in sys.platform for s in ['darwin', 'linux', 'bsd', 'sunos']):
2426
platform_supported = True
2527
include_dirs = [
@@ -62,8 +64,6 @@
6264
except ImportError:
6365
has_cython = False
6466

65-
lib_talib_name = 'ta_lib' # the name as of TA-Lib 0.4.0
66-
6767
for path in library_dirs:
6868
try:
6969
files = os.listdir(path)
@@ -143,7 +143,7 @@ def build_extensions(self):
143143

144144
setup(
145145
name='TA-Lib',
146-
version='0.5.3',
146+
version='0.5.4',
147147
description='Python wrapper for TA-Lib',
148148
long_description=long_description,
149149
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.5.3'
135+
__version__ = '0.5.4'
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)