Drop Python 3.6 and test in Python 3.10
This commit is contained in:
parent
19d217e177
commit
0b214b2ffd
4 changed files with 18 additions and 4 deletions
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
|
@ -6,7 +6,7 @@ jobs:
|
|||
test:
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: [3.6, 3.7, 3.8, 3.9]
|
||||
python-version: [3.7, 3.8, 3.9, 3.10]
|
||||
platform: [ubuntu-latest, macos-latest, windows-latest]
|
||||
runs-on: ${{ matrix.platform }}
|
||||
steps:
|
||||
|
|
|
|||
|
|
@ -3,6 +3,20 @@ Changelog
|
|||
|
||||
Versions follow `Semantic Versioning <https://semver.org/>`_ (``<major>.<minor>.<patch>``).
|
||||
|
||||
V1.9.0 (TBC)
|
||||
------------
|
||||
|
||||
Breaking Changes
|
||||
^^^^^^^^^^^^^^^^
|
||||
|
||||
* Dropped support for Python 3.6.
|
||||
|
||||
Features
|
||||
^^^^^^^^
|
||||
|
||||
* Added support for Python 3.10.
|
||||
|
||||
|
||||
v1.8.4 (2021-08-16)
|
||||
-------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -21,17 +21,17 @@ classifiers =
|
|||
Natural Language :: English
|
||||
Programming Language :: Python
|
||||
Programming Language :: Python :: 3
|
||||
Programming Language :: Python :: 3.6
|
||||
Programming Language :: Python :: 3.7
|
||||
Programming Language :: Python :: 3.8
|
||||
Programming Language :: Python :: 3.9
|
||||
Programming Language :: Python :: 3.10
|
||||
project_urls =
|
||||
Documentation = https://sphinx-autoapi.readthedocs.io/en/latest/
|
||||
|
||||
[options]
|
||||
packages = find:
|
||||
include_package_data = True
|
||||
python_requires = >=3.6
|
||||
python_requires = >=3.7
|
||||
install_requires =
|
||||
astroid>=2.7
|
||||
Jinja2
|
||||
|
|
|
|||
2
tox.ini
2
tox.ini
|
|
@ -2,7 +2,7 @@
|
|||
isolated_build = true
|
||||
envlist =
|
||||
# Keep this in sync with .github/workflows/main.yml
|
||||
py{36,37,38,39}
|
||||
py{37,38,39,310}
|
||||
formatting
|
||||
lint
|
||||
docs
|
||||
|
|
|
|||
Loading…
Reference in a new issue