Skip to content

Commit 0ccdd42

Browse files
committed
Fixing setup to use recommeneded version format.
1 parent b96f5cd commit 0ccdd42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

intercom/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
MultipleMatchingUsersError, RateLimitExceeded, ResourceNotFound,
77
ServerError, ServiceUnavailableError, UnexpectedError)
88

9-
__version__ = '3.0-dev'
9+
__version__ = '3.0b1'
1010

1111

1212
RELATED_DOCS_TEXT = "See https://github.com/jkeyes/python-intercom \

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
with open(os.path.join('intercom', '__init__.py')) as init:
1414
source = init.read()
15-
m = re.search("__version__ = '(\d+\.\d+(\.(\d+|[a-z]+))?)'", source, re.M)
15+
m = re.search("__version__ = '(.*)'", source, re.M)
1616
__version__ = m.groups()[0]
1717

1818
with open('README.rst') as readme:

0 commit comments

Comments
 (0)