diff --git a/conda/menpo/meta.yaml b/conda/menpo/meta.yaml index 51128b88ae8bc8ca9360244a721b6a756c06633d..10cf8d6fbaf57adce54610026a58649a52754f7b 100644 --- a/conda/menpo/meta.yaml +++ b/conda/menpo/meta.yaml @@ -17,7 +17,7 @@ source: - relax-pins.patch build: - number: 5 + number: 6 script: python setup.py install --single-version-externally-managed --record=record.txt run_exports: - {{ pin_subpackage(name, max_pin='x.x') }} @@ -42,7 +42,7 @@ requirements: # Scientific Python Stack - scipy - - pillow >=3.0,<5.0 + - pillow >=3.0 # Features - cyvlfeat >=0.4.3,<0.5 diff --git a/conda/menpo/relax-pins.patch b/conda/menpo/relax-pins.patch index 1501f6b9435f00b22f0e9f9582aa1acad09387da..b19407b63b076f24072109e9d4c014fc019f7c72 100644 --- a/conda/menpo/relax-pins.patch +++ b/conda/menpo/relax-pins.patch @@ -1,16 +1,19 @@ diff --git a/setup.py b/setup.py -index 17cae557..6c7b17ff 100644 +index 17cae557..995d375d 100644 --- a/setup.py +++ b/setup.py -@@ -90,12 +90,12 @@ cython_exts = cythonize(cython_modules, quiet=True) +@@ -89,13 +89,13 @@ cython_exts = cythonize(cython_modules, quiet=True) + # Please see conda/meta.yaml for other binary dependencies - install_requires = ['numpy>=1.10,<2.0', +-install_requires = ['numpy>=1.10,<2.0', - 'scipy>=0.16,<1.0', - 'matplotlib>=1.4,<2.0', +- 'pillow>=3.0,<5.0'] ++install_requires = ['numpy>=1.10', + 'scipy>=0.16', + 'matplotlib>=1.4', - 'pillow>=3.0,<5.0'] ++ 'pillow>=3.0'] if sys.version_info.major == 2: - install_requires.append('pathlib==1.0')