Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI failures #5

Merged
merged 3 commits into from
May 29, 2022
Merged
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
20 changes: 9 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,27 @@
# Required for Python 3.7 as of: 2019feb14
# Required for Python 3.10 as of: 2022may29
# https://docs.travis-ci.com/user/languages/python/
dist: xenial
os: linux
dist: focal

sudo: false
language: python

matrix:
jobs:
include:
- python: 2.7
env: TOX_ENV=py27
- python: 2.7
env: TOX_ENV=wheel,py27-testwheel
- python: 3.5
env: TOX_ENV=py35
- python: 3.6
env: TOX_ENV=py36
- python: 3.7
env: TOX_ENV=py37
- python: 3.8
env: TOX_ENV=py38
- python: 3.9
env: TOX_ENV=py39
- python: 3.7
env: TOX_ENV=wheel,py37-testwheel
- python: 3.6
- python: 3.10
env: TOX_ENV=py310
- python: 3.10
env: TOX_ENV=wheel,py3-testwheel
- python: 3.10
env: TOX_ENV=flake8
- python: 3.8
env: TOX_ENV=mypy2
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# For more information about tox, see https://tox.readthedocs.io/en/latest/
[tox]
envlist = py27,py35,py36,py37,py38,py39,pypy,flake8,mypy2,mypy3,wheel,py27-testwheel,py37-testwheel
envlist = py27,py37,py38,py39,py310,pypy,flake8,mypy2,mypy3,wheel,py27-testwheel,py3-testwheel

[flake8]
# At the time of adding this value, it's what makes us pass.
Expand Down Expand Up @@ -61,7 +61,7 @@ commands =
pip uninstall --yes pytest-avoidance
sh -c "pip install dist/*-py2.py3-*.whl"

[testenv:py37-testwheel]
[testenv:py3-testwheel]
depends = wheel
commands =
pip uninstall --yes pytest-avoidance
Expand Down