Skip to content

Commit

Permalink
Merge pull request #160 from moggers87/python-versions
Browse files Browse the repository at this point in the history
Drop Python 3.6 and add 3.10
  • Loading branch information
moggers87 authored Jan 29, 2022
2 parents 1d89164 + f2d5e4b commit 3894055
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ["3.7", "3.8", "3.9", "3.10"]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Development Status :: 4 - Beta',
'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',
'Intended Audience :: Developers',
'Topic :: Communications :: Email',
'Topic :: Software Development :: Libraries :: Application Frameworks',
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ envlist =
docs
lint
isort
py{36,37,38,39,py3}
py{37,38,39,310,py3}

[testenv]
commands =
Expand All @@ -14,7 +14,7 @@ commands =
coverage html
deps =
coverage
jinja2<3
jinja2

[testenv:docs]
whitelist_externals = make
Expand Down Expand Up @@ -57,9 +57,9 @@ skip_glob =

[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
3.10: py310
pypy-3.6: pypy3
pypy-3.7: pypy3

0 comments on commit 3894055

Please sign in to comment.