-
Notifications
You must be signed in to change notification settings - Fork 21
Change supported Python versions to 3.10-3.14 #108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -17,10 +17,10 @@ | |||||||||
|
|
||||||||||
| [project] | ||||||||||
| name = "apache-otava" | ||||||||||
| version = "0.7.0" | ||||||||||
| version = "1.0.0" | ||||||||||
| description = "Apache Otava (Incubating): Change Detection for Continuous Performance Engineering" | ||||||||||
| readme = "README.md" | ||||||||||
| requires-python = ">=3.8,<3.11" | ||||||||||
| requires-python = ">=3.10,<3.15" | ||||||||||
| license = { text = "Apache-2.0" } | ||||||||||
| authors = [ | ||||||||||
| { name = "Apache Otava (Incubating)", email = "dev@otava.apache.org" } | ||||||||||
|
|
@@ -30,38 +30,45 @@ maintainers = [ | |||||||||
| ] | ||||||||||
| classifiers = [ | ||||||||||
| "License :: OSI Approved :: Apache Software License", | ||||||||||
| "Programming Language :: Python :: 3.8", | ||||||||||
| "Programming Language :: Python :: 3.9", | ||||||||||
| "Programming Language :: Python :: 3.10", | ||||||||||
| "Programming Language :: Python :: 3.11", | ||||||||||
| "Programming Language :: Python :: 3.12", | ||||||||||
| "Programming Language :: Python :: 3.13", | ||||||||||
| "Programming Language :: Python :: 3.14", | ||||||||||
| ] | ||||||||||
| dependencies = [ | ||||||||||
| "dateparser>=1.0.0", | ||||||||||
| "numpy==1.24.*", | ||||||||||
| "python-dateutil>=2.8.1", | ||||||||||
| "scipy==1.10.*", | ||||||||||
| "ruamel.yaml==0.17.21", | ||||||||||
| "requests>=2.25.1", | ||||||||||
| "pystache>=0.6.0", | ||||||||||
| "tabulate>=0.8.7", | ||||||||||
| "validators>=0.18.2", | ||||||||||
| "slack-sdk>=3.4.2", | ||||||||||
| "google-cloud-bigquery>=3.25.0", | ||||||||||
| "pg8000>=1.31.2", | ||||||||||
| "numpy==2.2.0.*", | ||||||||||
| "python-dateutil>=2.9.0", | ||||||||||
| "ruamel.yaml==0.18.16", | ||||||||||
| "requests>=2.32.5", | ||||||||||
| "pystache>=0.6.8", | ||||||||||
| "tabulate>=0.9.0", | ||||||||||
| "validators>=0.35.0", | ||||||||||
| "slack-sdk>=3.39.0", | ||||||||||
| "google-cloud-bigquery>=3.38.0", | ||||||||||
| "pg8000>=1.31.5", | ||||||||||
| "configargparse>=1.7.1", | ||||||||||
| "expandvars>=0.12.0", | ||||||||||
|
|
||||||||||
| # For Python 3.10: last series that supports it | ||||||||||
| "scipy>=1.15,<1.16; python_version < '3.11'", | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we need to support all of these python versions? I would be more aggressive in jumping to the newest and dropping older versions.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it is a solid default to support all officially supported Python versions. Reasons:
WDYT?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok lets try it As for multithreading and such, we could implement it in a way so that the default is 1 thread and it can only have some other value if python version is 3.14. |
||||||||||
|
|
||||||||||
| # For Python 3.11–3.14: newer series | ||||||||||
| "scipy>=1.16,<1.17; python_version >= '3.11'", | ||||||||||
| ] | ||||||||||
|
|
||||||||||
| [project.optional-dependencies] | ||||||||||
| dev = [ | ||||||||||
| "pytest>=6.2.2", | ||||||||||
| "pytest-benchmark>=4.0.0", | ||||||||||
| "pytz==2021.1", | ||||||||||
| "tox==3.25", | ||||||||||
| "flake8>=4.0.1", | ||||||||||
| "autoflake>=1.4", | ||||||||||
| "isort>=5.10.1", | ||||||||||
| "ruff>=0.6.9", | ||||||||||
| "pre-commit==3.5.0", | ||||||||||
| "pytest>=9.0.1", | ||||||||||
| "pytest-benchmark>=5.2.3", | ||||||||||
| "pytz==2025.2", | ||||||||||
| "tox==4.32.0", | ||||||||||
| "flake8>=7.3.0", | ||||||||||
| "autoflake>=2.3.1", | ||||||||||
| "isort>=7.0.0", | ||||||||||
| "ruff>=0.14.8", | ||||||||||
| "pre-commit==4.5.0", | ||||||||||
| ] | ||||||||||
|
|
||||||||||
| [project.scripts] | ||||||||||
|
|
||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, probably about time.