Skip to content

Commit

Permalink
Alpha version release (v0.2.0-alpha.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
boydgreenfield committed Nov 4, 2016
1 parent 08e540d commit e0a386e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion onecodex/lib/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def version_inadequate(client_version, server_version):
Could use python package `semver` if we need more precise checks in
edge cases, but this generally works for now.
"""
client_version = tuple([int(x) for x in client_version.split('.')])
client_version = tuple([int(x) for x in client_version.split('-')[0].split('.')])
server_version = tuple([int(x) for x in server_version.split('.')])
return client_version < server_version

Expand Down
2 changes: 1 addition & 1 deletion onecodex/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.0'
__version__ = '0.2.0-alpha0'

0 comments on commit e0a386e

Please sign in to comment.