Skip to content

Commit

Permalink
Fix version
Browse files Browse the repository at this point in the history
  • Loading branch information
saketkc committed Sep 27, 2019
1 parent 7b16d0b commit f77e3a7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion ribotricer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__author__ = "Wenzheng Li, Saket Choudhary"
__version__ = "__version__ = '1.1.0'"
__version__ = "1.1.0"
10 changes: 5 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ values =
[bumpversion:part:build]

[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'
search = version="{current_version}"
replace = version="{new_version}"

[bumpversion:file:ribotricer/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[flake8]
exclude = docs
Expand All @@ -31,5 +31,5 @@ exclude = docs
test = pytest

[tool:pytest]
collect_ignore = ['setup.py']
collect_ignore = ["setup.py"]

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

setuptools.setup(
name="ribotricer",
version="version='1.1.0'",
version="1.1.0",
author="Wenzheng Li, Saket Choudhary",
author_email="skchoudh@usc.edu",
description="Python package to detect translating ORF from Ribo-seq data",
Expand Down

0 comments on commit f77e3a7

Please sign in to comment.