Skip to content

Commit 8548fa8

Browse files
committed
bump cython 3.1.3
1 parent dd0d49b commit 8548fa8

File tree

4 files changed

+177
-156
lines changed

4 files changed

+177
-156
lines changed

CHANGELOG

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

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "TA-Lib"
7-
version = "0.6.6"
7+
version = "0.6.7"
88
description = "Python wrapper for TA-Lib"
99
readme = "README.md"
10-
license = {file = "LICENSE"}
10+
license-files = ["LICENSE"]
1111
authors = [
1212
{name = "John Benediktsson", email = "[email protected]"}
1313
]
@@ -35,6 +35,7 @@ classifiers = [
3535
]
3636
dependencies = [
3737
"build",
38+
"cython>=3.1.3",
3839
"numpy",
3940
"pip",
4041
]

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.6'
135+
__version__ = '0.6.7'
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)