Skip to content

Commit

Permalink
Merge 9f8a78a into a265b5d
Browse files Browse the repository at this point in the history
  • Loading branch information
roskakori committed Jan 6, 2022
2 parents a265b5d + 9f8a78a commit 77e7bf2
Show file tree
Hide file tree
Showing 3 changed files with 332 additions and 3 deletions.
13 changes: 11 additions & 2 deletions docs/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,17 @@ Then create a tag in the repository:
$ git tag -a -m "Tagged version 1.x.x." v1.x.x
$ git push --tags
And finally publish the new version on PyPI:
Ideally one could publish the new version on PyPI using:

.. code-block:: sh
$ poetry publish
$ poetry publish # Probably fails
However, at the time of this writing poetry cannot publish projects that were
initially published using twine.

So instead you have to run:

.. code-block:: sh
$ poetry run twine upload dist/*.whl
Loading

0 comments on commit 77e7bf2

Please sign in to comment.