Skip to content

Commit

Permalink
bump version for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
edaniszewski committed Nov 15, 2017
1 parent 3ea5ac0 commit da1fbdc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pylint_quotes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
from __future__ import absolute_import
from pylint_quotes import plugin, checker

__version__ = '0.1.6'
__version__ = '0.1.7'

register = plugin.register
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ def find_version(*file_paths):
"""Return version defined in __init__.py without import pylint"""
with open(os.path.join(*file_paths)) as fhandler:
version_file = fhandler.read()
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
version_match = re.search(r'^__version__ = [\'"]([^\'"]*)[\'"]',
version_file, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError("Unable to find version string.")
raise RuntimeError('Unable to find version string.')


setup(
Expand Down

0 comments on commit da1fbdc

Please sign in to comment.