Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoeppe committed Oct 6, 2021
2 parents c6a0dc8 + 27c53ac commit ac52b57
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/sage/features/sagemath.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@ def __init__(self):
PythonModule.__init__(self, 'sage.matrix.matrix_gfpn_dense', spkg='meataxe')


class sage__plot(PythonModule):

def __init__(self):
PythonModule.__init__(self, 'sage.plot.plot')


class sage__rings__number_field(PythonModule):

def __init__(self):
Expand Down Expand Up @@ -96,6 +102,8 @@ def sage_optional_tags():
yield 'sage.graphs.mcqd'
if sage__matrix__matrix_gfpn_dense().is_present():
yield 'sage.matrix.matrix_gfpn_dense'
if sage__plot().is_present():
yield 'sage.plot'
if sage__rings__number_field().is_present():
yield 'sage.rings.number_field'
if sage__rings__real_double().is_present():
Expand Down

0 comments on commit ac52b57

Please sign in to comment.