diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e2f0e494a8fe99a52c81f1b9fdfed861c0cac85e..3b44c3f77091f4a3ec66dd25bbdf511acd3d208c 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 331159e26194e92a7788f4b59f5541bccf5f8e15..1db4ac1007bff3412178e7baea214bebaebc19d4 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 48e5f89431be7b36232ca78d221f932bc7e49bce..ea2c3fd8fd40807205fb95b617a3c80dac0fae2e 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