File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 11sudo : false
22language : python
33python :
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
1314notifications :
1415 email : false
1516 slack :
Original file line number Diff line number Diff line change 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'
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ def no_cythonize(extensions, **_ignore):
7676with 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
8181setup (
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'
You can’t perform that action at this time.
0 commit comments