Skip to content

Commit

Permalink
Merge branch 'release/0.4.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
wmayner committed Jan 12, 2017
2 parents 3de520d + b969c32 commit 82ac4f4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
@@ -1,6 +1,7 @@
sudo: false
language: python
python:
- '3.3'
- '3.4'
- '3.5'
- '3.6'
Expand All @@ -9,7 +10,7 @@ install:
- make
- pip install -e .
- pip install pytest
script: py.test
script: python -m pytest
notifications:
email: false
slack:
Expand Down
2 changes: 1 addition & 1 deletion pyemd/__about__.py
Expand Up @@ -5,7 +5,7 @@
"""PyEMD metadata"""

__title__ = 'pyemd'
__version__ = '0.4.1'
__version__ = '0.4.2'
__description__ = ("A Python wrapper for Ofir Pele and Michael Werman's "
"implementation of the Earth Mover's Distance.")
__author__ = 'Will Mayner'
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -76,7 +76,7 @@ def no_cythonize(extensions, **_ignore):
with open('./pyemd/__about__.py') as f:
exec(f.read(), about)

requires = ['numpy >=1.10.0, <2.0.0']
requires = ['numpy >=1.9.0, <2.0.0']

setup(
name=about['__title__'],
Expand All @@ -100,6 +100,7 @@ def no_cythonize(extensions, **_ignore):
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
Expand Down

0 comments on commit 82ac4f4

Please sign in to comment.