Skip to content

Commit

Permalink
src/sage/doctest/external.py: mathics is not external
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Jun 23, 2024
1 parent 9f47522 commit 4bf041b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/sage/doctest/external.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,9 @@ def external_features():
import sage.features.ffmpeg
yield from sage.features.ffmpeg.all_features()
import sage.features.interfaces
yield from sage.features.interfaces.all_features()
for feature in sage.features.interfaces.all_features():
if feature.name != 'mathics':
yield feature
from sage.features.mip_backends import CPLEX, Gurobi
yield CPLEX()
yield Gurobi()
Expand Down Expand Up @@ -398,7 +400,6 @@ class AvailableSoftware():
'magma',
'maple',
'mathematica',
'mathics',
'matlab',
'octave',
'pdflatex',
Expand Down

0 comments on commit 4bf041b

Please sign in to comment.