forked from readthedocs/sphinx_rtd_theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upload signed packages to PyPI with twine (readthedocs#651)
* Upload signed packages to PyPI with twine * Delete previous distributions
- Loading branch information
1 parent
4fc72d9
commit 74ba4b2
Showing
1 changed file
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,7 +80,14 @@ you should do the following: | |
#. Commit that change. | ||
#. Tag the release in git: ``git tag $NEW_VERSION``. | ||
#. Push the tag to GitHub: ``git push --tags origin``. | ||
#. Upload the package to PyPI: ``python setup.py sdist bdist_wheel upload``. | ||
#. Upload the package to PyPI: | ||
|
||
.. code:: bash | ||
$ rm -rf dist/ | ||
$ python setup.py sdist bdist_wheel | ||
$ twine upload --sign --identity [email protected] dist/* | ||
#. In the ``readthedocs.org`` repo, edit the ``bower.json`` file to point at the correct version | ||
(``sphinx-rtd-theme": "https://github.com/rtfd/sphinx-rtd-theme.git#$NEW_VERSION"``). | ||
#. In the ``readthedocs.org`` repo, run ``gulp build`` to update the distributed theme files. |