Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove python 3.13 for now
Browse files Browse the repository at this point in the history
sarahmish committed Nov 20, 2024
1 parent be143bd commit b0764da
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ combine third party tools or implement new functionalities from scratch.

## Requirements

**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/)
**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/)

Also, although it is not strictly required, the usage of a
[virtualenv](https://virtualenv.pypa.io/en/latest/) is highly recommended in order to avoid
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -92,7 +92,6 @@
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
description='Primitives and Pipelines for Time Series Data.',
entry_points={
@@ -114,7 +113,7 @@
keywords='mlstars',
name='ml-stars',
packages=find_packages(include=['mlstars', 'mlstars.*']),
python_requires='>=3.8,<3.14',
python_requires='>=3.8,<3.13',
setup_requires=setup_requires,
test_suite='tests',
tests_require=tests_require,
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = lint, docs, py3{8, 9, 10, 11, 12, 13}-{readme,pytest,minimum,tutorials}
envlist = lint, docs, py3{8, 9, 10, 11, 12}-{readme,pytest,minimum,tutorials}

[testenv]
skipsdist = false

0 comments on commit b0764da

Please sign in to comment.