Browse code

bump versions of dependencies also in INSTALL.rst

Christoph Groth authored on 19/05/2017 17:56:36
Showing 2 changed files
... ...
@@ -32,18 +32,18 @@ Building Kwant requires
32 32
  * `Python <https://www.python.org/>`_ 3.4 or above (Kwant 1.1 is the last
33 33
    version to support Python 2),
34 34
  * `NumPy <http://numpy.org/>`_ 1.8.1 or newer,
35
- * `SciPy <https://scipy.org/>`_ 0.13.3 or newer,
35
+ * `SciPy <https://scipy.org/>`_ 0.14 or newer,
36 36
  * `LAPACK <http://netlib.org/lapack/>`_ and `BLAS <http://netlib.org/blas/>`_,
37 37
    (For best performance we recommend the free `OpenBLAS
38 38
    <http://www.openblas.net/>`_ or the nonfree `MKL
39 39
    <https://software.intel.com/en-us/intel-mkl>`_.)
40
- * `Tinyarray <https://gitlab.kwant-project.org/kwant/tinyarray>`_, a NumPy-like
41
-   Python package optimized for very small arrays,
40
+ * `Tinyarray <https://gitlab.kwant-project.org/kwant/tinyarray>`_ 1.2 or newer,
41
+a NumPy-like Python package optimized for very small arrays,
42 42
  * An environment which allows to compile Python extensions written in C and
43 43
    C++.
44 44
 
45 45
 The following software is highly recommended though not strictly required:
46
- * `matplotlib <http://matplotlib.org/>`_ 1.3.1 or newer, for the module `kwant.plotter` and the tutorial,
46
+ * `matplotlib <http://matplotlib.org/>`_ 1.4.2 or newer, for the module `kwant.plotter` and the tutorial,
47 47
  * `SymPy <http://sympy.org/>`_ 0.7.6 or newer, for the subpackage `kwant.continuum`.
48 48
  * `MUMPS <http://graal.ens-lyon.fr/MUMPS/>`_, a sparse linear algebra library
49 49
    that will in many cases speed up Kwant several times and reduce the memory
... ...
@@ -637,8 +637,8 @@ def main():
637 637
                     'build_tut': build_tut,
638 638
                     'test': test},
639 639
           ext_modules=exts,
640
-          install_requires=['numpy >= 1.8.1', 'scipy >= 0.14.0',
641
-                            'tinyarray >= 1.2.0'],
640
+          install_requires=['numpy >= 1.8.1', 'scipy >= 0.14',
641
+                            'tinyarray >= 1.2'],
642 642
           extras_require={
643 643
               'plotting': 'matplotlib >= 1.4.2',
644 644
               # Ubuntu 16.04 is the oldest supported distro with python3-sympy