Skip to content

Commit

Permalink
Test what happens with RTD when I remove these
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdrake committed Mar 1, 2015
1 parent c7e4a2c commit 88ea949
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 14 deletions.
8 changes: 2 additions & 6 deletions pyeda/boolalg/expr.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,10 @@

import pyeda.parsing.boolexpr
from pyeda.boolalg import boolfunc
from pyeda.boolalg import exprnode
from pyeda.util import bit_on, cached_property, clog2

# FIXME: This is a hack for readthedocs Sphinx autodoc
try:
from pyeda.boolalg import picosat
except ImportError: # pragma: no cover
pass
from pyeda.boolalg import exprnode
from pyeda.boolalg import picosat


# existing Literal references
Expand Down
12 changes: 4 additions & 8 deletions pyeda/boolalg/minimization.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,10 @@
from pyeda.boolalg.expr import exprvar, Expression, Or, And
from pyeda.boolalg.table import TruthTable, PC_ZERO, PC_ONE, PC_DC

# NOTE: This is a hack for readthedocs Sphinx autodoc
try:
from pyeda.boolalg.espresso import (
FTYPE, DTYPE, RTYPE,
set_config, espresso,
)
except ImportError:
pass
from pyeda.boolalg.espresso import (
FTYPE, DTYPE, RTYPE,
set_config, espresso,
)


CONFIG = dict(
Expand Down

0 comments on commit 88ea949

Please sign in to comment.