Skip to content

Commit

Permalink
bumps version number for dev release
Browse files Browse the repository at this point in the history
  • Loading branch information
salotz committed Feb 13, 2020
1 parent f8cf6d7 commit b119e51
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

setup(
name='wepy',
version='1.0.0rc0',
version='1.0.0rc0.dev0',
author="Samuel D. Lotz",
author_email="[email protected]",
description="Weighted Ensemble Framework",
Expand Down
2 changes: 1 addition & 1 deletion sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# The short X.Y version
version = '1.0.0'
# The full version, including alpha/beta/rc tags
release = '1.0.0rc0'
release = '1.0.0rc0.dev0'


# -- General configuration ---------------------------------------------------
Expand Down
3 changes: 2 additions & 1 deletion src/wepy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

"""Top-level package for testing."""

from ._version import __version__

__author__ = """Samuel D. Lotz"""
__email__ = '[email protected]'
__version__ = '1.0.0rc0'
5 changes: 5 additions & 0 deletions src/wepy/_print_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from ._version import __version__

if __name__ == "__main__":

print(__version__)
1 change: 1 addition & 0 deletions src/wepy/_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '1.0.0rc0.dev0'

0 comments on commit b119e51

Please sign in to comment.