From 9a7a145fc8d599668ab75e3954b8b136c7827a06 Mon Sep 17 00:00:00 2001 From: Cameron Billingham Date: Sat, 2 Nov 2024 12:56:57 -0700 Subject: [PATCH] Fix typo in documentation and move python requires to 3.9 --- doc/source/intro.rst | 4 ++-- setup.cfg | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/intro.rst b/doc/source/intro.rst index 90d66f5..469f26d 100644 --- a/doc/source/intro.rst +++ b/doc/source/intro.rst @@ -268,7 +268,7 @@ This option has 3 modes: - ``"true"``: Epytext markup is converted in all text. For example: - ``I{text}`` becomes ``*text*`` - - ``B{text}`` stays as ``**text**`` + - ``B{text}`` becomes ``**text**`` - ``C{source code}`` becomes ````source code```` - ``M{m*x+b}`` becomes ``:math:`m*x+b``` @@ -276,7 +276,7 @@ This option has 3 modes: we fully remove source code markup wrapping (``C{}``). For example: - ``I{text}`` becomes ``*text*`` - - ``B{text}`` stays as ``**text**`` + - ``B{text}`` becomes ``**text**`` - ``C{MyType}`` becomes ``MyType`` use\_types diff --git a/setup.cfg b/setup.cfg index 822b829..9e5a510 100644 --- a/setup.cfg +++ b/setup.cfg @@ -29,7 +29,7 @@ classifiers = package_dir= =src packages=find: -python_requires = >=3.6 +python_requires = >=3.9 install_requires = six enum34;python_version<"3.4"