From 9c2cdb3c601eed13cc2118a0aff8c0b83b9991d7 Mon Sep 17 00:00:00 2001 From: Paul Tremberth Date: Fri, 9 Sep 2016 10:53:29 +0200 Subject: [PATCH 1/2] Travis: remove py32 build after py.test>=3.0 dropped support for it See http://doc.pytest.org/en/latest/changelog.html and https://github.com/pytest-dev/pytest/pull/1627 --- .travis.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index a89d5b3..bf21f78 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ language: python python: - "2.6" - "2.7" - - "3.2" - "3.3" - "3.4" - "3.5" @@ -11,9 +10,6 @@ python: install: - pip install lxml -e . - pip install -U codecov pytest-cov - - if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; - then pip uninstall -y coverage pytest && pip install "coverage<4" && pip install "pytest<3"; - fi script: py.test --cov-report term --cov=cssselect From f01843dcedc00804f437b7dfaff5ccae34abfa5c Mon Sep 17 00:00:00 2001 From: Paul Tremberth Date: Fri, 9 Sep 2016 11:06:39 +0200 Subject: [PATCH 2/2] Remove Py3.2 classifier from setup.py --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index b4d0941..5d5ec02 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,6 @@ 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5',