-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Drop 3.6 and 3.7 and support 3.11 and 3.12 #2735
Merged
alexcjohnson
merged 22 commits into
plotly:dev
from
graingert-coef:drop-3-6-support-3-12
Feb 8, 2024
+281
−235
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
2d156ab
test on 3.12
graingert-coef c436211
test on 3.8
graingert-coef 66113b7
drop support for 3.6 and 3.7 add support for 3.11 and 3.12
graingert-coef 028cfdf
replace all uses of python36 with python38 and python310 with python312
graingert-coef 8b66645
add changelog entry
graingert-coef 26a4c44
bump numpy, orjson, pyzmq, flake8 and pylint for 3.12 suppport
graingert-coef 3826502
use Python 3.12 on windows
graingert-coef 7b53486
switch to pylintrc312
graingert-coef bc21890
add new pylint violations to pylintrc
graingert-coef bc0e46e
vendor preconditions
graingert-coef 78b0567
replace preconditions call to getargspec with getfullargspec
graingert-coef f1c84c4
enable some pylint rules
graingert-coef 09ec06a
update .pylintrc config
graingert-coef 6fcc5fb
support chrome driver.name.lower() being chrome-headless-shell
graingert-coef 576f940
get exceptions working on Py3.11+
graingert-coef 8d89156
prevent celery tests hanging by installing setuptools
graingert-coef a6486e4
remove dash.html and dash.dash_table from extension-pkg-allow-list
graingert-coef ff11147
replace extension-pkg-whitelist with extension-pkg-allow-list
graingert-coef 5483d86
remove preconditions dep
graingert-coef a21e2d2
delete requires-all.txt it's generated in ci
graingert-coef 1544377
Update components/dash-table/tests/selenium/conftest.py
graingert-coef 87adad8
clean up python_version specifiers from requirements files
graingert-coef File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I suppose we can leave this as you have it for now, but way better would be to pick a version of
black
that supports all the same Python versions we do and always run it. The only reason we didn't do that from the start is that when we first introducedblack
we still supported Py2.7 andblack
was always Py3-only.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.
I'll do this in a follow up PR