Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ Riccati, Lyapunov, and Sylvester equations.
Dependencies
------------

Supported Python versions are 2.7, and 3.5 and later.

Slycot depends on Numpy and, if you are installing a binary distribution,
Numpy should be the only prerequisite (though you may need LAPACK
libraries as well, depending on your particular system configuration).
Expand Down
8 changes: 2 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,8 @@
from skbuild import setup
from skbuild.command.sdist import sdist

# Fix a bug in python v3.4 installation
if (sys.version_info[0:2] == (3, 4)):
import importlib.machinery

if sys.version_info[:2] < (2, 6) or (3, 0) <= sys.version_info[0:2] < (3, 2):
raise RuntimeError("Python version 2.6, 2.7 or >= 3.2 required.")
if sys.version_info[:2] < (2, 7) or (3, 0) <= sys.version_info[0:2] < (3, 5):
raise RuntimeError("Python version 2.7 or >= 3.5 required.")

DOCLINES = __doc__.split("\n")

Expand Down