Skip to content

Commit

Permalink
Merge pull request robinhood#5 from DomainTools/test-fixes-1.1
Browse files Browse the repository at this point in the history
fix version id and detection
  • Loading branch information
g-clef authored Aug 27, 2020
2 parents f5779c5 + f41b8da commit b0aab96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aiokafka/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '1.1.7-dt' # noqa
__version__ = '1.1.7.dt' # noqa

from .abc import ConsumerRebalanceListener
from .client import AIOKafkaClient
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def read(f):


def read_version():
regexp = re.compile(r"^__version__\W*=\W*'([\d.abrcdev]+)'")
regexp = re.compile(r"^__version__\W*=\W*'([\d.abrcdevt]+)'")
init_py = os.path.join(os.path.dirname(__file__),
'aiokafka', '__init__.py')
with open(init_py) as f:
Expand Down

0 comments on commit b0aab96

Please sign in to comment.