[Piglit] [PATCH 1/2] tox: Remove testing of end-of-life Python 3.3

Rhys Kidd rhyskidd at gmail.com
Sat Jun 9 19:45:36 UTC 2018


Python 3.3 reached end-of-life in September 2017 [0].

Continuous integration testing has identified a number of dependencies are
now failing on python 3.3, such as:

  Collecting wheel
  wheel requires Python '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*' but the running Python is 3.3.6
  ...
  OSError: Command /home/travis/build/E...generator/bin/python - setuptools pip wheel failed with error code 1

[0] https://www.python.org/dev/peps/pep-0398/#x-end-of-life

Signed-off-by: Rhys Kidd <rhyskidd at gmail.com>
---
 .travis.yml | 2 --
 tox.ini     | 6 +++---
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index b4cbcca49..b6e8136e8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,8 +15,6 @@ matrix:
   include:
     - python: 2.7
       env: TOX_ENV="py27-{generator,noaccel,accel-nix,streams}"
-    - python: 3.3
-      env: TOX_ENV="py33-{generator,noaccel,accel-nix,streams}"
     - python: 3.4
       env: TOX_ENV="py34-{generator,noaccel,accel-nix,streams}"
     - python: 3.5
diff --git a/tox.ini b/tox.ini
index 12e8abd9f..411972873 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = py{27,33,34,35,36}-{generator,noaccel}, py{27,33,34,35,36}-accel-{win,nix}, py{27,33,34,35,36}-streams
+envlist = py{27,34,35,36}-{generator,noaccel}, py{27,34,35,36}-accel-{win,nix}, py{27,34,35,36}-streams
 skipsdist = True
 
 [pytest]
@@ -16,7 +16,7 @@ deps =
     accel: simplejson
     generator: numpy==1.7.0
     mock==1.0.1
-    py27-accel-nix,py{33,34,35,36}-{accel,noaccel}: psutil
+    py27-accel-nix,py{34,35,36}-{accel,noaccel}: psutil
     py27-accel-nix: backports.lzma
     py27-accel-nix: subprocess32
     py{35,36}: mako==1.0.2
@@ -26,7 +26,7 @@ deps =
     pytest-raises
     pytest-warnings
     pytest-timeout
-    py{27,33,34}: mako==0.8.0
+    py{27,34}: mako==0.8.0
     six==1.5.2
     {accel,noaccel,streams}: jsonschema
     streams: jsonstreams>=0.4.1
-- 
2.17.1



More information about the Piglit mailing list