summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-10-31 11:05:41 -0700
committerMarge Bot <eric+marge@anholt.net>2020-02-13 19:09:15 +0000
commit19eb8323c8c96b786520d2e57741ae9e96be740c (patch)
tree233ec9c13a3d9383cc58063496ec3ebb62e4250f /README.md
parent740649eaff3af7738548d899c5404c487d529f75 (diff)
drop python2 support
This removes all of the python code for handling python 2.x vs 3.x, now only 3.6+ is supported. This also drops all uses of the six module, as its no longer needed. Python 2.x and <= 3.5 are all EOL, it doesn't make sense to continue to support version of python that are at the end of their lives and are being removed from operating systems. Acked-by: Eric Engestrom <eric@engestrom.ch> Part-of: <https://gitlab.freedesktop.org/mesa/piglit/merge_requests/223>
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 1 insertions, 11 deletions
diff --git a/README.md b/README.md
index 041a09f37..46978a23d 100644
--- a/README.md
+++ b/README.md
@@ -28,15 +28,13 @@ The original tests have been taken from
First of all, you need to make sure that the following are installed:
- - Python 2.7.x or >=3.5
+ - Python >=3.6
- Python Mako module
- numpy (http://www.numpy.org)
- - six (https://pypi.python.org/pypi/six)
- cmake (http://www.cmake.org)
- GL, glu and glut libraries and development packages (i.e. headers)
- X11 libraries and development packages (i.e. headers)
- waffle (http://www.waffle-gl.org)
- - mako
Optionally, you can install the following:
@@ -48,14 +46,6 @@ Optionally, you can install the following:
- VkRunner. A shader script testing tool for Vulkan.
(https://github.com/igalia/vkrunner)
-For Python 2.x you can install the following to add features, these are
-unnecessary for python3:
- - backports.lzma. A backport of python3's lzma module to python2,
- this enables fast native xz (de)compression in piglit for results files
- (https://github.com/peterjc/backports.lzma)
- - subprocess32. A backport of the subprocess from python3.2, which includes
- timeout support. This only works for Linux
-
For testing the python framework using `py.test unittests/framework`
- py.test. A python test framework, used for running the python framework
test suite.