Skip to content

Commit

Permalink
Change main to a dev version (#1126)
Browse files Browse the repository at this point in the history
  • Loading branch information
dakinggg authored Apr 20, 2024
1 parent 3426415 commit 6caa75a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion llmfoundry/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@
'registry',
]

__version__ = '0.7.0'
__version__ = '0.8.0.dev0'
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@
content = f.read()
# regex: '__version__', whitespace?, '=', whitespace, quote, version, quote
# we put parens around the version so that it becomes elem 1 of the match
expr = re.compile(r"""^__version__\W+=\W+['"]([0-9\.]*)['"]""", re.MULTILINE)
expr = re.compile(
r"""^__version__\s*=\s*['"]([0-9]+\.[0-9]+\.[0-9]+(?:\.\w+)?)['"]""",
re.MULTILINE)
repo_version = expr.findall(content)[0]

# Use repo README for PyPi description
Expand Down

0 comments on commit 6caa75a

Please sign in to comment.