mirror of
https://github.com/readthedocs/sphinx-autoapi
synced 2024-11-10 01:10:27 +00:00
Added Python 3.9 support
This commit is contained in:
parent
a8d07b610f
commit
714c0609ba
@ -9,13 +9,14 @@ python:
|
|||||||
- 3.6
|
- 3.6
|
||||||
- 3.7
|
- 3.7
|
||||||
- 3.8
|
- 3.8
|
||||||
|
- 3.9
|
||||||
jobs:
|
jobs:
|
||||||
include:
|
include:
|
||||||
- python: 3.8
|
- python: 3.9
|
||||||
env: TOXENV=docs
|
env: TOXENV=docs
|
||||||
- python: 3.8
|
- python: 3.9
|
||||||
env: TOXENV=lint
|
env: TOXENV=lint
|
||||||
- python: 3.8
|
- python: 3.9
|
||||||
env: TOXENV=formatting
|
env: TOXENV=formatting
|
||||||
notifications:
|
notifications:
|
||||||
slack:
|
slack:
|
||||||
|
@ -19,12 +19,13 @@ Features
|
|||||||
via the ``sphinx.ext.autodoc.typehints`` extension.
|
via the ``sphinx.ext.autodoc.typehints`` extension.
|
||||||
* `#191 <https://github.com/readthedocs/sphinx-autoapi/issues/191>`:
|
* `#191 <https://github.com/readthedocs/sphinx-autoapi/issues/191>`:
|
||||||
Basic incremental build support is enabled ``autoapi_keep_files`` is enabled.
|
Basic incremental build support is enabled ``autoapi_keep_files`` is enabled.
|
||||||
Providing none of the source files have changed,
|
Providing none of the source files have changed,
|
||||||
AutoAPI will skip parsing the source code and regenerating the API documentation.
|
AutoAPI will skip parsing the source code and regenerating the API documentation.
|
||||||
* `#200 <https://github.com/readthedocs/sphinx-autoapi/issues/200>`:
|
* `#200 <https://github.com/readthedocs/sphinx-autoapi/issues/200>`:
|
||||||
Can pass a callback that edits the Jinja Environment object before
|
Can pass a callback that edits the Jinja Environment object before
|
||||||
template rendering begins.
|
template rendering begins.
|
||||||
This allows custom filters, tests, and globals to be added to the environment.
|
This allows custom filters, tests, and globals to be added to the environment.
|
||||||
|
* Added support for Python 3.9.
|
||||||
|
|
||||||
Bug Fixes
|
Bug Fixes
|
||||||
^^^^^^^^^
|
^^^^^^^^^
|
||||||
|
1
setup.py
1
setup.py
@ -42,5 +42,6 @@ setup(
|
|||||||
"Programming Language :: Python :: 3.6",
|
"Programming Language :: Python :: 3.6",
|
||||||
"Programming Language :: Python :: 3.7",
|
"Programming Language :: Python :: 3.7",
|
||||||
"Programming Language :: Python :: 3.8",
|
"Programming Language :: Python :: 3.8",
|
||||||
|
"Programming Language :: Python :: 3.9",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
3
tox.ini
3
tox.ini
@ -1,6 +1,6 @@
|
|||||||
[tox]
|
[tox]
|
||||||
envlist =
|
envlist =
|
||||||
py{36,37,38}-sphinx{30,31,32}
|
py{36,37,38,39}-sphinx{30,31,32}
|
||||||
formatting
|
formatting
|
||||||
lint
|
lint
|
||||||
docs
|
docs
|
||||||
@ -10,6 +10,7 @@ python =
|
|||||||
3.6: py36
|
3.6: py36
|
||||||
3.7: py37
|
3.7: py37
|
||||||
3.8: py38
|
3.8: py38
|
||||||
|
3.9: py39
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
setenv =
|
setenv =
|
||||||
|
Loading…
Reference in New Issue
Block a user