Skip to content

Commit

Permalink
Add support for Python 3.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
dajiaji committed Oct 14, 2021
1 parent 26d35ce commit 5cc1b6a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-package.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v2
Expand All @@ -37,7 +37,7 @@ jobs:

- uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: "3.8"

- name: Combine coverage
run: |
Expand All @@ -61,7 +61,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: "3.8"

- name: Install pep517 and twine
run: python -m pip install pep517 twine
Expand All @@ -87,7 +87,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: "3.8"

- name: Install in dev mode
run: python -m pip install -e .[dev]
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Expand Up @@ -4,6 +4,8 @@ Changes
Unreleased
----------

- Add support for Python 3.10. `#183 <https://github.com/dajiaji/python-cwt/pull/183>`__

Version 1.4.1
-------------

Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Expand Up @@ -22,6 +22,7 @@ classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10

[options]
zip_safe = false
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Expand Up @@ -12,13 +12,14 @@ python =
3.7: py37
3.8: py38, docs, typing
3.9: py39
3.10: py310


[tox]
envlist =
lint
typing
py{36,37,38,39}
py{36,37,38,39,310}
docs
pypi-description
coverage-report
Expand Down

0 comments on commit 5cc1b6a

Please sign in to comment.