Skip to content

Commit de192f3

Browse files
committed
Merge tag 'TA_Lib-0.4.34' into ta_bundled_040
2 parents 1117170 + 38cc10f commit de192f3

File tree

5 files changed

+9
-3
lines changed

5 files changed

+9
-3
lines changed

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.4.34
2+
======
3+
4+
- [FIX]: include cython *.pxi files in the source tar.gz
5+
16
0.4.33
27
======
38

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ include COPYRIGHT
33
include README.md
44
include talib/*.c
55
include talib/*.pyx
6+
include talib/*.pxi
67
include tests/*.py

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

66
[build-system]

setup.py

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

146146
setup(
147147
name='TA-Lib',
148-
version='0.4.33',
148+
version='0.4.34',
149149
description='Python wrapper for TA-Lib',
150150
long_description=long_description,
151151
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.4.33'
135+
__version__ = '0.4.34'
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)