Skip to content

Commit c391ef6

Browse files
Merge pull request #98 from benvanwerkhoven/increase_test_envs
increase number of python versions to test against
2 parents 73c86dd + 52703b0 commit c391ef6

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,19 @@ matrix:
99
env:
1010
- MCONDA_PYTHON_MAJOR=3
1111
- MCONDA_PYTHON_VERSION=3.6
12+
- os: linux
13+
env:
14+
- MCONDA_PYTHON_MAJOR=3
15+
- MCONDA_PYTHON_VERSION=3.7
1216

1317
- os: osx
1418
env:
1519
- MCONDA_PYTHON_MAJOR=3
1620
- MCONDA_PYTHON_VERSION=3.6
21+
- os: osx
22+
env:
23+
- MCONDA_PYTHON_MAJOR=3
24+
- MCONDA_PYTHON_VERSION=3.7
1725

1826
# build the documentation and deploy to the gh-pages branch
1927
- os: linux

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Before creating a pull request please ensure the following:
2020

2121
* You have written unit tests to test your additions and all unit tests pass
2222
* The examples still work and produce the same (or better) results
23-
* The code is compatible with both Python 2.7 and Python 3.5 or newer
23+
* The code is compatible with Python 3.5 or newer
2424
* You have run `pylint` to check your code
2525
* An entry about the change or addition is created in CHANGELOG.md
2626
* Any matching entries in the roadmap.md are updated/removed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def readme():
1717
version="0.2.0",
1818
author="Ben van Werkhoven",
1919
author_email="[email protected]",
20-
description=("A simple CUDA/OpenCL kernel tuner in Python"),
20+
description=("An easy to use CUDA/OpenCL kernel tuner in Python"),
2121
license="Apache 2.0",
2222
keywords="auto-tuning gpu computing pycuda cuda pyopencl opencl",
2323
url="http://benvanwerkhoven.github.io/kernel_tuner/",
@@ -31,7 +31,9 @@ def readme():
3131
'License :: OSI Approved :: Apache Software License',
3232
'Natural Language :: English',
3333
'Operating System :: POSIX :: Linux',
34+
'Programming Language :: Python :: 3.5',
3435
'Programming Language :: Python :: 3.6',
36+
'Programming Language :: Python :: 3.7',
3537
'Topic :: Scientific/Engineering',
3638
'Topic :: Software Development',
3739
'Topic :: System :: Distributed Computing',

0 commit comments

Comments
 (0)