Skip to content

Commit e6662b5

Browse files
committed
TST: Added testing for Python 3.4
Added test environment for Python 3.4 Improved setup for better information on pypi
1 parent 6a7940a commit e6662b5

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

.travis.yml

+8
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@ matrix:
3636
- NUMBA=0.15
3737
- MATPLOTLIB=1.4
3838
- COVERAGE=false
39+
- python: 2.7
40+
env:
41+
- PYTHON=3.4
42+
- NUMPY=1.9
43+
- SCIPY=0.14
44+
- NUMBA=0.16
45+
- MATPLOTLIB=1.4
46+
- COVERAGE=false
3947

4048
notifications:
4149
email:

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0
1+
2.1

setup.py

+14
Original file line numberDiff line numberDiff line change
@@ -194,5 +194,19 @@ def strip_rc(version):
194194
zip_safe=False,
195195
include_package_data=True,
196196
distclass=BinaryDistribution,
197+
classifiers=[
198+
'Development Status :: 4 - Beta',
199+
'Intended Audience :: End Users/Desktop',
200+
'Programming Language :: Python :: 2.7',
201+
'Programming Language :: Python :: 3.3',
202+
'Programming Language :: Python :: 3.4',
203+
'License :: OSI Approved',
204+
'Operating System :: MacOS :: MacOS X',
205+
'Operating System :: Microsoft :: Windows',
206+
'Operating System :: POSIX',
207+
'Programming Language :: Python',
208+
'Programming Language :: Cython',
209+
'Topic :: Scientific/Engineering',
210+
],
197211
install_requires=[key + '>=' + REQUIREMENTS[key] for key in REQUIREMENTS]
198212
)

0 commit comments

Comments
 (0)