Skip to content
Snippets Groups Projects
Commit dc02e80e authored by Joseph Weston's avatar Joseph Weston
Browse files

bump library versions to match oldest supported platform

Our baseline is Debian stable (Jessie) where possible.  The only
dependency that cannot be satisfied is sympy; Debian stable does not
have a Python 3 package for this.  We set the required sympy version to
that present in Ubuntu 16.04 LTS.
parent 0c63ae15
No related branches found
No related tags found
No related merge requests found
Pipeline #
#!/usr/bin/env python3 #!/usr/bin/env python3
# Copyright 2011-2016 Kwant authors. # Copyright 2011-2017 Kwant authors.
# #
# This file is part of Kwant. It is subject to the license terms in the file # This file is part of Kwant. It is subject to the license terms in the file
# LICENSE.rst found in the top-level directory of this distribution and at # LICENSE.rst found in the top-level directory of this distribution and at
...@@ -637,9 +637,10 @@ def main(): ...@@ -637,9 +637,10 @@ def main():
'build_tut': build_tut, 'build_tut': build_tut,
'test': test}, 'test': test},
ext_modules=exts, ext_modules=exts,
install_requires=['numpy >= 1.8.1', 'scipy >= 0.13.3', 'tinyarray >= 1.2.0'], install_requires=['numpy >= 1.8.1', 'scipy >= 0.14.0',
'tinyarray >= 1.2.0'],
extras_require={ extras_require={
'plotting': 'matplotlib >= 1.3.1', 'plotting': 'matplotlib >= 1.4.2',
# Ubuntu 16.04 is the oldest supported distro with python3-sympy # Ubuntu 16.04 is the oldest supported distro with python3-sympy
'continuum': 'sympy >= 0.7.6', 'continuum': 'sympy >= 0.7.6',
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment