Skip to content

Commit 82ac4f4

Browse files
committed
Merge branch 'release/0.4.2'
2 parents 3de520d + b969c32 commit 82ac4f4

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
sudo: false
22
language: python
33
python:
4+
- '3.3'
45
- '3.4'
56
- '3.5'
67
- '3.6'
@@ -9,7 +10,7 @@ install:
910
- make
1011
- pip install -e .
1112
- pip install pytest
12-
script: py.test
13+
script: python -m pytest
1314
notifications:
1415
email: false
1516
slack:

pyemd/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""PyEMD metadata"""
66

77
__title__ = 'pyemd'
8-
__version__ = '0.4.1'
8+
__version__ = '0.4.2'
99
__description__ = ("A Python wrapper for Ofir Pele and Michael Werman's "
1010
"implementation of the Earth Mover's Distance.")
1111
__author__ = 'Will Mayner'

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def no_cythonize(extensions, **_ignore):
7676
with open('./pyemd/__about__.py') as f:
7777
exec(f.read(), about)
7878

79-
requires = ['numpy >=1.10.0, <2.0.0']
79+
requires = ['numpy >=1.9.0, <2.0.0']
8080

8181
setup(
8282
name=about['__title__'],
@@ -100,6 +100,7 @@ def no_cythonize(extensions, **_ignore):
100100
'License :: OSI Approved :: MIT License',
101101
'Programming Language :: Python',
102102
'Programming Language :: Python :: 3',
103+
'Programming Language :: Python :: 3.3',
103104
'Programming Language :: Python :: 3.4',
104105
'Programming Language :: Python :: 3.5',
105106
'Programming Language :: Python :: 3.6'

0 commit comments

Comments
 (0)