From fcf28cdaf41e01aefabf1e4f86fdcad3f98b8660 Mon Sep 17 00:00:00 2001 From: Kaushik Kulkarni Date: Thu, 4 Jun 2020 00:45:07 -0500 Subject: [PATCH] Drop Py2 from CI --- .gitlab-ci.yml | 28 ---------------------------- doc/source/misc.rst | 6 ++++++ pycuda/__init__.py | 2 +- 3 files changed, 7 insertions(+), 29 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e2f0e494..3b44c3f7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,31 +1,3 @@ -Python 2.7 Titan: - script: - - py_version=2.7 - - EXTRA_INSTALL="numpy mako" - - echo "CUDADRV_LIB_DIR = ['/usr/lib/x86_64-linux-gnu/nvidia/current']" > siteconf.py - - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh - - "export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH" - - ". ./build-and-test-py-project.sh" - tags: - - python2.7 - - nvidia-titan-x - except: - - tags - -Python 2.7 K40: - script: - - py_version=2.7 - - EXTRA_INSTALL="numpy mako" - - echo "CUDADRV_LIB_DIR = ['/usr/lib/x86_64-linux-gnu/nvidia/current']" > siteconf.py - - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh - - "export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH" - - ". ./build-and-test-py-project.sh" - tags: - - python2.7 - - nvidia-k40 - except: - - tags - Python 3 Titan X: script: - py_version=3 diff --git a/doc/source/misc.rst b/doc/source/misc.rst index 331159e2..1db4ac10 100644 --- a/doc/source/misc.rst +++ b/doc/source/misc.rst @@ -1,6 +1,12 @@ Changes ======= +Version 2020.1 +-------------- + +* Removes support for Python 2.7. + + Version 2019.1 -------------- diff --git a/pycuda/__init__.py b/pycuda/__init__.py index 48e5f894..ea2c3fd8 100644 --- a/pycuda/__init__.py +++ b/pycuda/__init__.py @@ -1,3 +1,3 @@ -VERSION = (2019, 1, 2) +VERSION = (2020, 1) VERSION_STATUS = "" VERSION_TEXT = ".".join(str(x) for x in VERSION) + VERSION_STATUS -- GitLab