From 1802b9aa3f6282ee44fb86471eeedd2fa48aced5 Mon Sep 17 00:00:00 2001 From: jjavier-bm Date: Sat, 13 Jan 2024 15:03:09 +0000 Subject: [PATCH] add myst_parser in exchange of recommonmark --- docs/conf.py | 9 ++++++++- setup.py | 7 +------ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 8252a37..b05923b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -46,7 +46,8 @@ 'sphinx.ext.mathjax', 'sphinx.ext.viewcode', 'sphinx.ext.napoleon', - 'recommonmark', + #'recommonmark', + 'myst_parser', #'sphinxext.math_symbol_table', 'sphinxarg.ext' ] @@ -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. diff --git a/setup.py b/setup.py index a648d62..e49d5d6 100644 --- a/setup.py +++ b/setup.py @@ -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)