Skip to content

Commit 6dfe365

Browse files
sync upstream
2 parents 0efbbfa + 5bace94 commit 6dfe365

File tree

4 files changed

+5022
-2830
lines changed

4 files changed

+5022
-2830
lines changed

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.4.19
2+
======
3+
4+
- [NEW]: Upgrade to Cython 0.29.20
5+
16
0.4.18
27
======
38

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,12 +133,13 @@ def build_extensions(self):
133133
]
134134
setup(
135135
name='TA-Lib',
136-
version='0.4.18',
136+
version='0.4.19',
137137
description='Python wrapper for TA-Lib',
138138
author='John Benediktsson',
139139
author_email='mrjbq7@gmail.com',
140140
url='http://github.com/mrjbq7/ta-lib',
141141
download_url='https://github.com/mrjbq7/ta-lib/releases',
142+
license='BSD',
142143
classifiers=[
143144
"License :: OSI Approved :: BSD License",
144145
"Development Status :: 4 - Beta",
@@ -147,12 +148,15 @@ def build_extensions(self):
147148
"Operating System :: MacOS :: MacOS X",
148149
"Operating System :: Microsoft :: Windows",
149150
"Programming Language :: Python",
151+
"Programming Language :: Python :: 2",
150152
"Programming Language :: Python :: 2.7",
153+
"Programming Language :: Python :: 3",
151154
"Programming Language :: Python :: 3.3",
152155
"Programming Language :: Python :: 3.4",
153156
"Programming Language :: Python :: 3.5",
154157
"Programming Language :: Python :: 3.6",
155158
"Programming Language :: Python :: 3.7",
159+
"Programming Language :: Python :: 3.8",
156160
"Programming Language :: Cython",
157161
"Topic :: Office/Business :: Financial",
158162
"Topic :: Scientific/Engineering :: Mathematics",

talib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def wrapper(*args, **kwargs):
7171
setattr(stream, func_name, wrapped_func)
7272
globals()[stream_func_name] = wrapped_func
7373

74-
__version__ = '0.4.18'
74+
__version__ = '0.4.19'
7575

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

0 commit comments

Comments
 (0)