Skip to content

Commit

Permalink
Fix typo in documentation and move python requires to 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
cbillingham committed Nov 2, 2024
1 parent 886a730 commit 9a7a145
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions doc/source/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -268,15 +268,15 @@ 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```

- ``"types"``: All epytext markup is converted. In addition, in type strings,
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
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 9a7a145

Please sign in to comment.