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
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
else:
import __builtin__ as builtins

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

CLASSIFIERS = """\
Development Status :: 3 - Alpha
Expand Down
14 changes: 7 additions & 7 deletions slycot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@

# import slycot.examples

# Analysis routines (6/40 wrapped)
from .analysis import ab01nd,ab05md,ab05nd,ab07nd,ab08nd, ab09ad, \
ab09ax, ab09bd
# Analysis routines (10/40 wrapped)
from .analysis import ab01nd,ab05md,ab05nd,ab07nd,ab08nd, \
ab09ad, ab09ax, ab09bd, ab09md, ab09nd

# Data analysis routines (0/7 wrapped)

Expand All @@ -25,10 +25,10 @@
# Mathematical routines (3/81 wrapped)
from .math import mc01td, mb05md, mb05nd

# Synthesis routines (11/50 wrapped)
from .synthesis import sb01bd,sb02md,sb02mt,sb02od,sb03md
from .synthesis import sb04md,sb04qd,sb10ad,sb10hd,sg03ad
from .synthesis import sg02ad
# Synthesis routines (14/50 wrapped)
from .synthesis import sb01bd,sb02md,sb02mt,sb02od,sb03md,sb03od
from .synthesis import sb04md,sb04qd,sb10ad,sb10dd,sb10hd,sg03ad
from .synthesis import sg02ad, sg03bd

# Transformation routines (9/40 wrapped)
from .transform import tb01id,tb03ad,tb04ad
Expand Down
Loading