Fixes related to the recent changes in the documentation (#6021)

* Add myst-parser to setup.py extras_require

* Include new location of CHANGELOG.md in MANIFEST.in
This commit is contained in:
Lumír 'Frenzy' Balhar 2021-03-23 11:02:11 +01:00 committed by GitHub
parent 9a0ef920dc
commit ec4969eed1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,7 @@
include LICENSE
include CONTRIBUTING.rst
include README.md
include CHANGELOG.md
include package.json
include bower.json
include .bowerrc

View File

@ -126,7 +126,8 @@ for more information.
extras_require = {
'test': ['pytest', 'coverage', 'requests',
'nbval', 'selenium', 'pytest', 'pytest-cov'],
'docs': ['sphinx', 'nbsphinx', 'sphinxcontrib_github_alt', 'sphinx_rtd_theme'],
'docs': ['sphinx', 'nbsphinx', 'sphinxcontrib_github_alt',
'sphinx_rtd_theme', 'myst-parser'],
'test:sys_platform != "win32"': ['requests-unixsocket'],
'json-logging': ['json-logging']
},