-
Notifications
You must be signed in to change notification settings - Fork 20
Officially support Python 3.12 #368
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 | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -13,6 +13,16 @@ development source code and as such may not be routinely kept up to date. | |||||||||
|
|
||||||||||
| # __NEXT__ | ||||||||||
|
|
||||||||||
| This release adds support for Python version 3.12. | ||||||||||
| ([#TBD](https://github.com/nextstrain/cli/pull/TBD)) | ||||||||||
|
|
||||||||||
| Note that this Python version support only matters if you're installing | ||||||||||
| Nextstrain CLI from PyPI or Bioconda | ||||||||||
| ([c.f.](https://docs.nextstrain.org/projects/cli/en/8.3.0/installation/)). It | ||||||||||
|
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. This link shouldn't be version-specific here. It should at least be version-agnostic
Suggested change
or, better yet, reflect the version it's released as
Suggested change
(See c05b044 for how that works.) |
||||||||||
| does not apply if you're installing Nextstrain CLI using the standalone | ||||||||||
| installation method we recommend in the [Nextstrain installation | ||||||||||
| documentation](https://docs.nextstrain.org/page/install.html). In that case, a | ||||||||||
| supported Python version is always bundled with `nextstrain`. | ||||||||||
|
|
||||||||||
| # 8.3.0 (30 April 2024) | ||||||||||
|
|
||||||||||
|
|
||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -74,6 +74,7 @@ def find_namespaced_packages(namespace): | |
| "Programming Language :: Python :: 3.9", | ||
| "Programming Language :: Python :: 3.10", | ||
| "Programming Language :: Python :: 3.11", | ||
| "Programming Language :: Python :: 3.12", | ||
| ], | ||
|
|
||
| # Install a "nextstrain" program which calls nextstrain.cli.__main__.main() | ||
|
|
@@ -145,8 +146,7 @@ def find_namespaced_packages(namespace): | |
| "types-botocore", | ||
| "types-docutils", | ||
| "types-setuptools", | ||
| "types-requests; python_version != '3.6'", | ||
| "types-requests <=2.28.11.12; python_version == '3.6'", | ||
| "types-requests", | ||
|
Comment on lines
-148
to
+149
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. \o/ Thanks for spotting this! |
||
| ], | ||
| }, | ||
| ) | ||
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.
need to fill this TBD in :-)