Skip to content

Commit 7e65bdd

Browse files
authored
Support Python version up to 3.13 (#173)
* Support python 3.13
1 parent 70dc9a2 commit 7e65bdd

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/unit_testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
14-
python-version: ['3.8', '3.9', '3.10', '3.11', 'pypy-3.8']
14+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10', 'pypy-3.11']
1515

1616
runs-on: "${{ matrix.os }}"
1717

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# talipp - Incremental Technical Analysis Library
22

33
![python](https://img.shields.io/pypi/pyversions/talipp?logo=python)
4-
![PyPy](https://img.shields.io/badge/pypy-3-blue.svg)
4+
![PyPy](https://img.shields.io/badge/pypy-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue)
55
![unit tests](https://github.com/nardew/talipp/workflows/unit%20tests/badge.svg)
66

77
---

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
"Programming Language :: Python :: 3.9",
3131
"Programming Language :: Python :: 3.10",
3232
"Programming Language :: Python :: 3.11",
33+
"Programming Language :: Python :: 3.12",
34+
"Programming Language :: Python :: 3.13",
3335
"License :: OSI Approved :: MIT License",
3436
"Operating System :: OS Independent",
3537
"Topic :: Software Development :: Libraries",

0 commit comments

Comments
 (0)