mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-06 21:16:54 +00:00
Confirm support for Python 3.10.
This commit is contained in:
parent
21d3c70d67
commit
9e67a6b7dd
5 changed files with 5 additions and 3 deletions
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
|
@ -28,7 +28,7 @@ jobs:
|
|||
python: 3.9
|
||||
toxenv: py
|
||||
- os: ubuntu-latest
|
||||
python: '3.10.0-alpha - 3.10.999'
|
||||
python: "3.10"
|
||||
toxenv: py
|
||||
# windows
|
||||
- os: windows-latest
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ appropriate of:
|
|||
pip3 install <plugin-name>
|
||||
python -m pip install <plugin-name>
|
||||
python3 -m pip install <plugin-name>
|
||||
python3.9 -m pip install <plugin-name>
|
||||
python3.10 -m pip install <plugin-name>
|
||||
|
||||
To install the plugin, where ``<plugin-name>`` is the package name on PyPI_.
|
||||
To verify installation use:
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@ setuptools.setup(
|
|||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||
"Topic :: Software Development :: Quality Assurance",
|
||||
],
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@ classifiers =
|
|||
Programming Language :: Python :: 3.7
|
||||
Programming Language :: Python :: 3.8
|
||||
Programming Language :: Python :: 3.9
|
||||
Programming Language :: Python :: 3.10
|
||||
Topic :: Software Development :: Libraries :: Python Modules
|
||||
Topic :: Software Development :: Quality Assurance
|
||||
|
||||
|
|
|
|||
2
tox.ini
2
tox.ini
|
|
@ -1,6 +1,6 @@
|
|||
[tox]
|
||||
minversion=2.3.1
|
||||
envlist = py36,py37,py38,flake8,linters,docs
|
||||
envlist = py36,py37,py38,py39,py310,flake8,linters,docs
|
||||
|
||||
[testenv]
|
||||
deps =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue