diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a378c9b..0d429d7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 diff --git a/docs/source/user/using-plugins.rst b/docs/source/user/using-plugins.rst index 5d577c5..3fe5b7f 100644 --- a/docs/source/user/using-plugins.rst +++ b/docs/source/user/using-plugins.rst @@ -25,7 +25,7 @@ appropriate of: pip3 install python -m pip install python3 -m pip install - python3.9 -m pip install + python3.10 -m pip install To install the plugin, where ```` is the package name on PyPI_. To verify installation use: diff --git a/example-plugin/setup.py b/example-plugin/setup.py index 70d56fa..b59c227 100644 --- a/example-plugin/setup.py +++ b/example-plugin/setup.py @@ -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", ], diff --git a/setup.cfg b/setup.cfg index ade05af..88ddb20 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 diff --git a/tox.ini b/tox.ini index c2f3151..c26427c 100644 --- a/tox.ini +++ b/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 =