diff --git a/.rtd-environment.yml b/.rtd-environment.yml new file mode 100644 index 0000000..6264b8b --- /dev/null +++ b/.rtd-environment.yml @@ -0,0 +1,9 @@ +name: ablog-rtd +dependencies: +- pip: + - werkzeug + - sphinx + - alabaster + - invoke + - python-dateutil + - sphinx-automodapi diff --git a/docs/release/ablog-v0.9-released.rst b/docs/release/ablog-v0.9-released.rst index 0afca03..614a6b6 100644 --- a/docs/release/ablog-v0.9-released.rst +++ b/docs/release/ablog-v0.9-released.rst @@ -8,8 +8,25 @@ ABlog v0.9 released ABlog v0.9.0 is released with the main focus being to support the latest version of Sphinx. -This also moves the main development from +This also moves the main development from `Abakan`_ to `SunPy`_. -.. _Font Awesome: https://fortawesome.github.io/Font-Awesome/ -.. _Albert Mietus: https://github.com/AlbertMietus -.. _uralbash: https://github.com/uralbash +This has merged in all current (at time of writing, 6) open PRs to the original repository. + +These are: + +`fix(commands): Update command arguments so patterns works correctly `_ +from `rayalan `_. + +`Fix couple of bugs with latest stable Sphinx `_ from `tadeboro `_. + +`don't use fancy quotes in the conf.py template `_ from `tiwo `_. + +`Pass through additional Sphinx options and fix a typo `_ from `ahrbel `_. + +`fix #78 (ImportError: cannot import name make_admonition in Sphinx 1.6) `_ from `lsaffre `_. + +`Raise exception when title is missing `_ from `rgrinberg `_. + + +.. _Abakan: https://github.com/abakan/ablog +.. _SunPy: https://github.com/sunpy/ablog diff --git a/readthedocs.yml b/readthedocs.yml new file mode 100644 index 0000000..47fe6ad --- /dev/null +++ b/readthedocs.yml @@ -0,0 +1,5 @@ +conda: + file: .rtd-environment.yml + +python: + setup_py_install: true diff --git a/setup.py b/setup.py index 6cc2ef7..f88e09c 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ setup( 'Programming Language :: Python :: 3', ], provides=['ablog ({0:s})'.format(__version__)], - install_requires=['Werkzeug', 'Sphinx>=1.6', 'alabaster', 'invoke', 'python-dateutil', 'sphinx-automodapi'], + install_requires=['werkzeug', 'sphinx>=1.6', 'alabaster', 'invoke', 'python-dateutil', 'sphinx-automodapi'], message_extractors={ 'ablog': [ ('**.html', 'jinja2', None),