-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the python deps to something more recent as well.
Issue: https://khanacademy.slack.com/archives/C02NV1DPJ/p1726506371960829 Test plan: I ran this successfully: ``` python3.12 -c 'import flake8.api.legacy; flake8.api.legacy.get_style_guide() ``` Before this change, it gave an import error.
- Loading branch information
Showing
97 changed files
with
3,701 additions
and
7,018 deletions.
There are no files selected for viewing
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,43 @@ | ||
Metadata-Version: 2.1 | ||
Name: flake8 | ||
Version: 3.9.2 | ||
Version: 6.1.0 | ||
Summary: the modular source code checker: pep8 pyflakes and co | ||
Home-page: https://gitlab.com/pycqa/flake8 | ||
Home-page: https://github.com/pycqa/flake8 | ||
Author: Tarek Ziade | ||
Author-email: [email protected] | ||
Maintainer: Ian Stapleton Cordasco | ||
Maintainer-email: [email protected] | ||
License: MIT | ||
Platform: UNKNOWN | ||
Classifier: Development Status :: 5 - Production/Stable | ||
Classifier: Environment :: Console | ||
Classifier: Framework :: Flake8 | ||
Classifier: Intended Audience :: Developers | ||
Classifier: License :: OSI Approved :: MIT License | ||
Classifier: Programming Language :: Python | ||
Classifier: Programming Language :: Python :: 2 | ||
Classifier: Programming Language :: Python :: 2.7 | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: Programming Language :: Python :: 3.5 | ||
Classifier: Programming Language :: Python :: 3.6 | ||
Classifier: Programming Language :: Python :: 3.7 | ||
Classifier: Programming Language :: Python :: 3.8 | ||
Classifier: Programming Language :: Python :: 3.9 | ||
Classifier: Programming Language :: Python :: 3 :: Only | ||
Classifier: Programming Language :: Python :: Implementation :: CPython | ||
Classifier: Programming Language :: Python :: Implementation :: PyPy | ||
Classifier: Topic :: Software Development :: Libraries :: Python Modules | ||
Classifier: Topic :: Software Development :: Quality Assurance | ||
Requires-Python: !=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7 | ||
Requires-Dist: pyflakes (<2.4.0,>=2.3.0) | ||
Requires-Dist: pycodestyle (<2.8.0,>=2.7.0) | ||
Requires-Dist: mccabe (<0.7.0,>=0.6.0) | ||
Requires-Dist: configparser ; python_version < "3.2" | ||
Requires-Dist: functools32 ; python_version < "3.2" | ||
Requires-Dist: enum34 ; python_version < "3.4" | ||
Requires-Dist: typing ; python_version < "3.5" | ||
Requires-Dist: importlib-metadata ; python_version < "3.8" | ||
Requires-Python: >=3.8.1 | ||
Description-Content-Type: text/x-rst | ||
License-File: LICENSE | ||
Requires-Dist: mccabe (<0.8.0,>=0.7.0) | ||
Requires-Dist: pycodestyle (<2.12.0,>=2.11.0) | ||
Requires-Dist: pyflakes (<3.2.0,>=3.1.0) | ||
|
||
.. image:: https://github.com/PyCQA/flake8/workflows/main/badge.svg | ||
:target: https://github.com/PyCQA/flake8/actions?query=workflow%3Amain | ||
:alt: build status | ||
|
||
.. image:: https://results.pre-commit.ci/badge/github/PyCQA/flake8/main.svg | ||
:target: https://results.pre-commit.ci/latest/github/PyCQA/flake8/main | ||
:alt: pre-commit.ci status | ||
|
||
.. image:: https://img.shields.io/discord/825463413634891776.svg | ||
:target: https://discord.gg/qYxpadCgkx | ||
:alt: Discord | ||
|
||
======== | ||
Flake8 | ||
|
@@ -66,14 +70,14 @@ Quickstart | |
========== | ||
|
||
See our `quickstart documentation | ||
<http://flake8.pycqa.org/en/latest/index.html#quickstart>`_ for how to install | ||
<https://flake8.pycqa.org/en/latest/index.html#quickstart>`_ for how to install | ||
and get started with Flake8. | ||
|
||
|
||
Frequently Asked Questions | ||
========================== | ||
|
||
Flake8 maintains an `FAQ <http://flake8.pycqa.org/en/latest/faq.html>`_ in its | ||
Flake8 maintains an `FAQ <https://flake8.pycqa.org/en/latest/faq.html>`_ in its | ||
documentation. | ||
|
||
|
||
|
@@ -90,27 +94,26 @@ to suggest, the mailing list would be the best place for it. | |
Links | ||
===== | ||
|
||
* `Flake8 Documentation <http://flake8.pycqa.org/en/latest/>`_ | ||
* `Flake8 Documentation <https://flake8.pycqa.org/en/latest/>`_ | ||
|
||
* `GitLab Project <https://gitlab.com/pycqa/flake8>`_ | ||
* `GitHub Project <https://github.com/pycqa/flake8>`_ | ||
|
||
* `All (Open and Closed) Issues | ||
<https://gitlab.com/pycqa/flake8/issues?scope=all&sort=updated_desc&state=all>`_ | ||
<https://github.com/pycqa/flake8/issues?q=is%3Aissue>`_ | ||
|
||
* `Code-Quality Archives | ||
<https://mail.python.org/mailman/listinfo/code-quality>`_ | ||
|
||
* `Code of Conduct | ||
<http://flake8.pycqa.org/en/latest/internal/contributing.html#code-of-conduct>`_ | ||
<https://flake8.pycqa.org/en/latest/internal/contributing.html#code-of-conduct>`_ | ||
|
||
* `Getting Started Contributing | ||
<http://flake8.pycqa.org/en/latest/internal/contributing.html>`_ | ||
<https://flake8.pycqa.org/en/latest/internal/contributing.html>`_ | ||
|
||
|
||
Maintenance | ||
=========== | ||
|
||
Flake8 was created by Tarek Ziadé and is currently maintained by `Ian Cordasco | ||
<http://www.coglib.com/~icordasc/>`_ | ||
|
||
|
||
Flake8 was created by Tarek Ziadé and is currently maintained by `anthony sottile | ||
<https://github.com/sponsors/asottile>`_ and `Ian Cordasco | ||
<https://www.coglib.com/~icordasc/>`_ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
../../bin/flake8,sha256=NIme8Gfxn1XMVFjCMjW8o2uY_J8Ni6fGYFo7buWpQk0,214 | ||
flake8-6.1.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 | ||
flake8-6.1.0.dist-info/LICENSE,sha256=5G355Zzr--CxRJLlzeNB6OxC0lKpm2pYP8RgiGOl2r4,1172 | ||
flake8-6.1.0.dist-info/METADATA,sha256=Xym89mgDF7MUiawc8LhIv_In4n02WdRMHOaPRqDiLEU,3816 | ||
flake8-6.1.0.dist-info/RECORD,, | ||
flake8-6.1.0.dist-info/WHEEL,sha256=bb2Ot9scclHKMOLDEHY6B2sicWOgugjFKaJsT7vwMQo,110 | ||
flake8-6.1.0.dist-info/entry_points.txt,sha256=DL_4PPVWWudFtPjS-7AX_wtyFGt0Y9VN0KvNjCejS7s,422 | ||
flake8-6.1.0.dist-info/top_level.txt,sha256=6Tlo_i7chAhjqQkybdwPfClaqi0-dkJh_2o1PSn1aBM,7 | ||
flake8/__init__.py,sha256=juSe0JBP1Q_mbOFdDTt0v7r31cQWfvT8yvpmxvs_cYg,1943 | ||
flake8/__main__.py,sha256=lkxpQWWXjApgesUxZVYW3xTGTT9u0lj2DpFeQO1-dWs,178 | ||
flake8/__pycache__/__init__.cpython-38.pyc,, | ||
flake8/__pycache__/__main__.cpython-38.pyc,, | ||
flake8/__pycache__/_compat.cpython-38.pyc,, | ||
flake8/__pycache__/checker.cpython-38.pyc,, | ||
flake8/__pycache__/defaults.cpython-38.pyc,, | ||
flake8/__pycache__/discover_files.cpython-38.pyc,, | ||
flake8/__pycache__/exceptions.cpython-38.pyc,, | ||
flake8/__pycache__/processor.cpython-38.pyc,, | ||
flake8/__pycache__/statistics.cpython-38.pyc,, | ||
flake8/__pycache__/style_guide.cpython-38.pyc,, | ||
flake8/__pycache__/utils.cpython-38.pyc,, | ||
flake8/__pycache__/violation.cpython-38.pyc,, | ||
flake8/_compat.py,sha256=u9N4Dxo35mPmxF6hQWRPCjOqVHkLF8HxCgpgvgxueuQ,283 | ||
flake8/api/__init__.py,sha256=xgaqH5ehF5EeZ6I35bP5uj9OzASv9a4AcFNHxB4oXuQ,241 | ||
flake8/api/__pycache__/__init__.cpython-38.pyc,, | ||
flake8/api/__pycache__/legacy.cpython-38.pyc,, | ||
flake8/api/legacy.py,sha256=U2czkZScuVhnMJ9MzDBlng4qfg9LGsEI0vjosXvrXPY,6898 | ||
flake8/checker.py,sha256=uoqERpBLGU2j0o7ZvOltAQPZdIsjG-CodHQwDCDsPac,22581 | ||
flake8/defaults.py,sha256=al0IFZ6rOdIva_XgueGGGqdMaf9fTtHwlY3dsAd_2Fo,1109 | ||
flake8/discover_files.py,sha256=PXRyPB4lEoNsp8HjqksShsVUzW7P1i8JQdcJSfqN7bk,2581 | ||
flake8/exceptions.py,sha256=klokjovJklHojNwn-NFTlMp_PEVLMAYXzc9umIQ-bI8,2393 | ||
flake8/formatting/__init__.py,sha256=GeU-7Iwf3TnGHiGdt3ksVMbbs6a6xa2f3k9wkqY-6WA,97 | ||
flake8/formatting/__pycache__/__init__.cpython-38.pyc,, | ||
flake8/formatting/__pycache__/_windows_color.cpython-38.pyc,, | ||
flake8/formatting/__pycache__/base.cpython-38.pyc,, | ||
flake8/formatting/__pycache__/default.cpython-38.pyc,, | ||
flake8/formatting/_windows_color.py,sha256=Z0z0fsKONjmb9Z15D8BCdBGm9nJ5amfvCBdsy1FVO1s,2022 | ||
flake8/formatting/base.py,sha256=CdEVQBWYpEyV9NxarXFvcMpopmADT4LMv2dWlmPwSwU,7356 | ||
flake8/formatting/default.py,sha256=ubZCBQswdz-cq661BMzHRCIU5yGpeGo_5kKqmhqPVXs,3057 | ||
flake8/main/__init__.py,sha256=mr4YPJVODVERm_0nz7smskE1RuVopp1LS7N-BFVGwuk,98 | ||
flake8/main/__pycache__/__init__.cpython-38.pyc,, | ||
flake8/main/__pycache__/application.cpython-38.pyc,, | ||
flake8/main/__pycache__/cli.cpython-38.pyc,, | ||
flake8/main/__pycache__/debug.cpython-38.pyc,, | ||
flake8/main/__pycache__/options.cpython-38.pyc,, | ||
flake8/main/application.py,sha256=Fsb5gnAVaRi5447TptCehI93CfxzQrQ2WeOW7jwHh8M,7949 | ||
flake8/main/cli.py,sha256=4fi8ByQhSlOkpgrJec72xtY8FYF0uc4r9eoUIQioc-8,599 | ||
flake8/main/debug.py,sha256=Wcn1ENm_xrCopsv8_w744kt-5wcA5czo4kyW18MBjrw,911 | ||
flake8/main/options.py,sha256=Dl-7_GubDoeGj1UNb5KDZk4qwTpDpN-etp-Z3U9mp00,11008 | ||
flake8/options/__init__.py,sha256=cpxQPjG8gcBygJ4CB8bRgDhShPncwOT5Zq535479B00,496 | ||
flake8/options/__pycache__/__init__.cpython-38.pyc,, | ||
flake8/options/__pycache__/aggregator.cpython-38.pyc,, | ||
flake8/options/__pycache__/config.cpython-38.pyc,, | ||
flake8/options/__pycache__/manager.cpython-38.pyc,, | ||
flake8/options/__pycache__/parse_args.cpython-38.pyc,, | ||
flake8/options/aggregator.py,sha256=sdtTNzZuUMiucCups13EHZsDvfbUPUdJVwhyx4SS5F8,1963 | ||
flake8/options/config.py,sha256=Oj-OO89ZbNQtFUHcHDZ24xeIT2gTfAXrcut2cneVhz4,4572 | ||
flake8/options/manager.py,sha256=Yf3a3wloh6w6bsJCGrZcUkIBpu26lIGlVpROBZZbp3U,11525 | ||
flake8/options/parse_args.py,sha256=tDjoCY-qa9Lllaibg9RU0QBn2aA9ratvkxogQUAxZ4U,2162 | ||
flake8/plugins/__init__.py,sha256=9EaF2MX-tp9U9byByvmF05RsggH041H6yPH31Q4O-lc,92 | ||
flake8/plugins/__pycache__/__init__.cpython-38.pyc,, | ||
flake8/plugins/__pycache__/finder.cpython-38.pyc,, | ||
flake8/plugins/__pycache__/pycodestyle.cpython-38.pyc,, | ||
flake8/plugins/__pycache__/pyflakes.cpython-38.pyc,, | ||
flake8/plugins/__pycache__/reporter.cpython-38.pyc,, | ||
flake8/plugins/finder.py,sha256=XpPSvnFPtQi7ja6o5RUBIHK9I5sW0LNf0PtuXDX_xC8,11154 | ||
flake8/plugins/pycodestyle.py,sha256=VxTLzObXFsV8bWk6MwWZ_BIzcN_ORGf_1UN9A82OLrQ,5680 | ||
flake8/plugins/pyflakes.py,sha256=P9U6stmWwlkMmY8-GqHerGNcOHy3yMrg70IzTuUgG08,6717 | ||
flake8/plugins/reporter.py,sha256=0jr3UKehzAakdX9sx-Z8t0hAcKPGtTTwNh4hdijKqgE,1241 | ||
flake8/processor.py,sha256=wl9NcBo_ISU_ndSj9b5ZaMOJsJA_1dNZRvZGZnrsZBM,16599 | ||
flake8/statistics.py,sha256=nSWZdc68vIdGUNp3NJZr5inlqTq56dHJi0NlJgIrSY8,4358 | ||
flake8/style_guide.py,sha256=PAjEgXt_wlq5bnL3BGFke0xuQJiDiJMi5dRlidCbpoM,14432 | ||
flake8/utils.py,sha256=6mZv-eNqbH9CbGSmnVziCks1TdWeNgNfpXwIVSH_mVs,8168 | ||
flake8/violation.py,sha256=tSgIoc7idFmjzvSm8DfU4afNMetwjYn8FnGGvYYrHrc,2039 |
2 changes: 1 addition & 1 deletion
2
vendor/py3/mccabe-0.6.1.dist-info/WHEEL → vendor/py3/flake8-6.1.0.dist-info/WHEEL
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[console_scripts] | ||
flake8 = flake8.main.cli:main | ||
|
||
[flake8.extension] | ||
E = flake8.plugins.pycodestyle:pycodestyle_logical | ||
F = flake8.plugins.pyflakes:FlakesChecker | ||
W = flake8.plugins.pycodestyle:pycodestyle_physical | ||
|
||
[flake8.report] | ||
default = flake8.formatting.default:Default | ||
pylint = flake8.formatting.default:Pylint | ||
quiet-filename = flake8.formatting.default:FilenameOnly | ||
quiet-nothing = flake8.formatting.default:Nothing |
File renamed without changes.
Oops, something went wrong.