Skip to content

Commit

Permalink
add myst_parser in exchange of recommonmark
Browse files Browse the repository at this point in the history
  • Loading branch information
jjavier-bm committed Jan 13, 2024
1 parent 3501e5e commit 1802b9a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
9 changes: 8 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@
'sphinx.ext.mathjax',
'sphinx.ext.viewcode',
'sphinx.ext.napoleon',
'recommonmark',
#'recommonmark',
'myst_parser',
#'sphinxext.math_symbol_table',
'sphinxarg.ext'
]
Expand All @@ -63,6 +64,12 @@
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
# source_suffix = ['.rst', '.md']
# or a dictionary:
# source_suffix = {
# '.rst': 'restructuredtext',
# '.txt': 'markdown',
# '.md': 'markdown',
# }
source_suffix = '.rst'

# The encoding of source files.
Expand Down
7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,7 @@ def _load_suite(self, cases, pattern, directory):
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: >=3.6",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
install_requires=dependencies)

0 comments on commit 1802b9a

Please sign in to comment.