Skip to content

Commit

Permalink
Merge pull request #641 from biolink/update_pypi_instructions
Browse files Browse the repository at this point in the history
Update pypi release instructions
  • Loading branch information
dustine32 committed Sep 13, 2023
2 parents 7d53dd3 + 46d93e0 commit 0891be6
Show file tree
Hide file tree
Showing 3 changed files with 168 additions and 131 deletions.
7 changes: 4 additions & 3 deletions README-developers.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,13 @@ git push --tags

> To ensure this is successful, make sure you have relevant permissions to Ontobio package on [PyPI](https://pypi.org/project/ontobio/)
Run the following commands:
Run the following commands (note, you will need a pypi token to do this work, see: https://pypi.org/help/#apitoken
and make a ~/.pypirc file to store your token):

```sh
make cleandist
python setup.py sdist bdist_wheel bdist_egg
twine upload --repository-url https://upload.pypi.org/legacy/ --username PYPI_USERNAME dist/*
python setup.py sdist bdist_wheel
twine upload --repository-url https://upload.pypi.org/legacy/ --username __token__ dist/*
```

****************************************************************************************************
Expand Down
2 changes: 1 addition & 1 deletion ontobio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import absolute_import

__version__ = '2.8.11'
__version__ = '2.8.13'


from .ontol_factory import OntologyFactory
Expand Down

0 comments on commit 0891be6

Please sign in to comment.