readthedocs / readthedocs-sphinx-ext

[RTD Internal] This is an extension that we install on all Sphinx builds on Read the Docs
MIT License
17 stars 35 forks source link

Read the Docs Sphinx Extensions

.. image:: https://img.shields.io/pypi/v/readthedocs-sphinx-ext.svg :target: https://pypi.python.org/pypi/readthedocs-sphinx-ext :alt: PyPI Version .. image:: https://circleci.com/gh/readthedocs/readthedocs-sphinx-ext.svg?style=svg :target: https://circleci.com/gh/readthedocs/readthedocs-sphinx-ext :alt: Build Status

This module adds extensions that make Sphinx easier to use. Some of them require Read the Docs features, others are just code that we ship and enable during builds on Read the Docs.

We currently ship:

Releasing

. Increment the version in setup.py

. Tag the release in git: git tag $NEW_VERSION.

. Push the tag to GitHub: git push --tags origin main

. Upload the package to PyPI:

.. code:: bash

    $ python -m pip install --upgrade pip build twine
    $ rm -rf dist/
    $ python -m build --sdist --wheel
    $ twine upload --username=__token__ --password=$PYPI_TOKEN dist/*