Skip to content

Commit

Permalink
0.5.0 prerelease 2 (#194)
Browse files Browse the repository at this point in the history
* fixed github workflow issues

* Bump version: 0.5.0.dev2 → 0.5.0.dev3
  • Loading branch information
rlizzo committed Apr 4, 2020
1 parent fae9052 commit e1bb0e8
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.5.0.dev2
current_version = 0.5.0.dev3
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<build>\d+))?
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ jobs:
- run: mv -v dist-windows-3.8/* dist/

- name: Upload PreRelease to Test PyPi with Twine
if: github.event.release.prereleased
if: "github.event.release.prerelease"
env:
TWINE_USERNAME: ${{ secrets.TEST_PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }}
Expand All @@ -203,7 +203,7 @@ jobs:
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
- name: Upload Release to PyPi with Twine
if: "!github.event.release.prereleased"
if: "!github.event.release.prerelease"
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
year = '2019-2020'
author = 'Richard Izzo'
copyright = '{0}, {1}'.format(year, author)
version = release = '0.5.0.dev2'
version = release = '0.5.0.dev3'

pygments_style = 'default'
pygments_lexer = 'PythonConsoleLexer'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def run(self):

setup(
name='hangar',
version='0.5.0.dev2',
version='0.5.0.dev3',
license='Apache 2.0',
# Package Meta Info (for PyPi)
description=SHORT_DESCRIPTION,
Expand Down
2 changes: 1 addition & 1 deletion src/hangar/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.5.0.dev2'
__version__ = '0.5.0.dev3'
__all__ = ('make_torch_dataset', 'make_tf_dataset', 'Repository')

from .repository import Repository
Expand Down
2 changes: 1 addition & 1 deletion src/hangar/diagnostics/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.5.0.dev2'
__version__ = '0.5.0.dev3'

from .graphing import Graph

Expand Down

0 comments on commit e1bb0e8

Please sign in to comment.