From fff16b03a0a570c57febdd76f4cbf9190acbd9fd Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Wed, 5 May 2021 05:08:35 +1000 Subject: [PATCH 1/4] Update pytest from 6.1.1 to 6.2.4 --- test-requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-requirements.txt b/test-requirements.txt index edb40b4..e4c1aa3 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,2 +1,2 @@ -pytest==6.1.1 +pytest==6.2.4 pytest-cov==2.10.1 From 8a7c758a7f5bc872457a5fac57a1f8c479baccee Mon Sep 17 00:00:00 2001 From: James Tocknell Date: Sat, 29 May 2021 14:04:35 +1000 Subject: [PATCH 2/4] Drop travis --- .travis.yml | 48 ------------------------------------------------ tox.ini | 3 ++- 2 files changed, 2 insertions(+), 49 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index e40eab7..0000000 --- a/.travis.yml +++ /dev/null @@ -1,48 +0,0 @@ -language: python -dist: xenial - -cache: - directories: - - $HOME/.cache/pip - -matrix: - include: - - python: 3.5 - env: - - TOXENV=py35 - - python: 3.6 - env: - - TOXENV=py36 - - python: 3.7 - env: - - TOXENV=py37 - #- python: 3.8 - # env: - # - TOXENV=py38 - - python: 3.5 - env: - - TOXENV=flake8 - - python: 3.5 - env: - - TOXENV=pylint - - python: 3.5 - env: - - TOXENV=docs - - python: 3.5 - env: - - TOXENV=check-manifest - - python: 3.5 - env: - - TOXENV=checkreadme - -before_install: - - pip install codecov # for coverage - -install: - - pip install tox - -script: - - tox - -after_success: - - codecov diff --git a/tox.ini b/tox.ini index bbf38de..b46564e 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py35,py36,py37,py38,flake8,pylint,docs,check-manifest,checkreadme +envlist = py35,py36,py37,py38,py39,flake8,pylint,docs,check-manifest,checkreadme [testenv] commands = py.test -p pytester --cov={envsitepackagesdir}/pytest_info_collector --runpytest=subprocess {posargs} @@ -15,6 +15,7 @@ basepython = py36: {env:TOXPYTHON:python3.6} py37: {env:TOXPYTHON:python3.7} py38: {env:TOXPYTHON:python3.8} + py39: {env:TOXPYTHON:python3.9} flake8: {env:TOXPYTHON:python3} pylint: {env:TOXPYTHON:python3} docs: {env:TOXPYTHON:python3} From 5d298896219d9809a2873a6ff2c2f2443de92fd7 Mon Sep 17 00:00:00 2001 From: James Tocknell Date: Sat, 29 May 2021 14:29:06 +1000 Subject: [PATCH 3/4] Drop doctest --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 32c0552..29805be 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -28,7 +28,7 @@ jobs: pool: vmImage: ubuntu-16.04 variables: - TOXENV: flake8,pylint,docs,doctest,check-manifest,checkreadme + TOXENV: flake8,pylint,docs,check-manifest,checkreadme steps: - task: UsePythonVersion@0 inputs: From 562d063c138768f7b679dfc7b04fca92d9715cd1 Mon Sep 17 00:00:00 2001 From: James Tocknell Date: Sat, 29 May 2021 14:33:29 +1000 Subject: [PATCH 4/4] Fix MANIFEST.in --- MANIFEST.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MANIFEST.in b/MANIFEST.in index 42ba92e..1d72278 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -9,3 +9,5 @@ include test-requirements.txt recursive-include tests *.py include pylintrc include tox.ini +exclude bors.toml azure-pipelines.yml +recursive-exclude ci *