Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ matrix:
env: TOXENV=py39,codecov
- python: 3.10
env: TOXENV=py310,codecov
- python: 3.11
env: TOXENV=py311,codecov

# Failures on these unsupported python versions are allowed
allow_failures:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ src =
setup.py

[tox]
envlist = py26,py27,py33,py34,py35,py36,py37,py38,py39,py310,pep8
envlist = py26,py27,py33,py34,py35,py36,py37,py38,py39,py310,py311,pep8
skipsdist = true
skip_install = true
usedevelop = false
Expand All @@ -31,6 +31,7 @@ basepython =
py38: python3.8
py39: python3.9
py310: python3.10
py311: python3.11
passenv =
# See https://github.com/codecov/example-python#testing-with-tox
codecov: CI TRAVIS TRAVIS_*
Expand Down Expand Up @@ -73,6 +74,8 @@ commands =

[testenv:py310]

[testenv:py311]

###########################
# Publish to Codecov
###########################
Expand Down