Skip to content

Commit

Permalink
Make version format PEP 440 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Aug 22, 2014
1 parent 35ef317 commit f111b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiozmq/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def _parse_version(ver):
major = int(match.group('major'))
minor = int(match.group('minor'))
micro = int(match.group('micro'))
levels = {'rc': 'candidate',
levels = {'c': 'candidate',
'a': 'alpha',
'b': 'beta',
None: 'final'}
Expand Down

0 comments on commit f111b72

Please sign in to comment.