Skip to content
Snippets Groups Projects
Commit 508b5df6 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Relax pinning in menpo

parent 9adb02d5
Branches
Tags
1 merge request!374Relax pinning in menpo
Pipeline #
......@@ -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') }}
......
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')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment