-
Notifications
You must be signed in to change notification settings - Fork 1.4k
chore(ci,docs): align Python to 3.11 and update docs — Resolves #1961 #1962
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
base: master
Are you sure you want to change the base?
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 |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| FROM mcr.microsoft.com/vscode/devcontainers/python:3.10 | ||
| FROM mcr.microsoft.com/vscode/devcontainers/python:3.11 | ||
| COPY setup.sh /setup.sh |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| FROM python:3.7 | ||
| FROM python:3.11 | ||
|
|
||
| RUN pip install flake8 black isort | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -9,18 +9,18 @@ authors = [ | |||||||||||||||||
| ] | ||||||||||||||||||
| description = "AutoML for deep learning" | ||||||||||||||||||
| readme = "README.md" | ||||||||||||||||||
| requires-python = ">=3.8" | ||||||||||||||||||
| requires-python = ">=3.11" | ||||||||||||||||||
| license = {text = "Apache License 2.0"} | ||||||||||||||||||
| dynamic = ["version"] | ||||||||||||||||||
| classifiers = [ | ||||||||||||||||||
| "Intended Audience :: Developers", | ||||||||||||||||||
| "Intended Audience :: Education", | ||||||||||||||||||
| "Intended Audience :: Science/Research", | ||||||||||||||||||
| "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", | ||||||||||||||||||
| "Programming Language :: Python :: 3.11", | ||||||||||||||||||
| "Programming Language :: Python :: 3.12", | ||||||||||||||||||
| "Programming Language :: Python :: 3 :: Only", | ||||||||||||||||||
|
Comment on lines
+20
to
+23
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. For better readability and to maintain consistency, it's a good practice to sort the
Suggested change
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 used the original notation of keras |
||||||||||||||||||
| "Topic :: Scientific/Engineering :: Mathematics", | ||||||||||||||||||
| "Topic :: Software Development :: Libraries :: Python Modules", | ||||||||||||||||||
| "Topic :: Software Development :: Libraries", | ||||||||||||||||||
|
|
||||||||||||||||||
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.
This empty heading (
##) and the following blank line appear to be unintentional. They create unnecessary vertical space and can be confusing. It would be cleaner to remove them.