Skip to content

Commit b0764da

Browse files
committed
remove python 3.13 for now
1 parent be143bd commit b0764da

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ combine third party tools or implement new functionalities from scratch.
3131

3232
## Requirements
3333

34-
**ml-stars** has been developed and tested on [Python 3.8, 3.9, 3.10, 3.11, 3.12, 3.13](https://www.python.org/downloads/)
34+
**ml-stars** has been developed and tested on [Python 3.8, 3.9, 3.10, 3.11, and 3.12](https://www.python.org/downloads/)
3535

3636
Also, although it is not strictly required, the usage of a
3737
[virtualenv](https://virtualenv.pypa.io/en/latest/) is highly recommended in order to avoid

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@
9292
'Programming Language :: Python :: 3.10',
9393
'Programming Language :: Python :: 3.11',
9494
'Programming Language :: Python :: 3.12',
95-
'Programming Language :: Python :: 3.13',
9695
],
9796
description='Primitives and Pipelines for Time Series Data.',
9897
entry_points={
@@ -114,7 +113,7 @@
114113
keywords='mlstars',
115114
name='ml-stars',
116115
packages=find_packages(include=['mlstars', 'mlstars.*']),
117-
python_requires='>=3.8,<3.14',
116+
python_requires='>=3.8,<3.13',
118117
setup_requires=setup_requires,
119118
test_suite='tests',
120119
tests_require=tests_require,

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = lint, docs, py3{8, 9, 10, 11, 12, 13}-{readme,pytest,minimum,tutorials}
2+
envlist = lint, docs, py3{8, 9, 10, 11, 12}-{readme,pytest,minimum,tutorials}
33

44
[testenv]
55
skipsdist = false

0 commit comments

Comments
 (0)