Skip to content

Commit

Permalink
Merge pull request djsutherland#4 from scopatz/patch-1
Browse files Browse the repository at this point in the history
Fix some deprecation warning
  • Loading branch information
djsutherland authored Jan 18, 2019
2 parents f0c8b0f + 906be3f commit a1e23be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rever.xsh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ $ACTIVITIES = [
'conda_forge',
]
$VERSION_BUMP_PATTERNS = [ # These note where/how to find the version numbers
('arxiv_collector.py', '__version__\s*=.*', "__version__ = '$VERSION'"),
('setup.py', 'version\s*=.*,', "version='$VERSION',")
('arxiv_collector.py', r'__version__\s*=.*', "__version__ = '$VERSION'"),
('setup.py', r'version\s*=.*,', "version='$VERSION',")
]

$CHANGELOG_FILENAME = 'CHANGELOG.rst'
Expand Down

0 comments on commit a1e23be

Please sign in to comment.