Remove version constraints

This commit is contained in:
Adam J. Stewart
2016-06-10 17:08:50 -05:00
parent 4eeaff175c
commit b2aa78d6ab
5 changed files with 9 additions and 13 deletions

View File

@@ -34,7 +34,7 @@ class PyIminuit(Package):
version('1.2', '4701ec472cae42015e26251703e6e984')
# Required dependencies
extends('python@2.7:2.8,3.4:')
extends('python')
depends_on('py-setuptools')
# Optional dependencies
@@ -42,5 +42,4 @@ class PyIminuit(Package):
depends_on('py-matplotlib')
def install(self, spec, prefix):
python('setup.py', 'install', '--single-version-externally-managed',
'--root=/', '--prefix={0}'.format(prefix))
python('setup.py', 'install', '--prefix={0}'.format(prefix))