Skip to content

Commit

Permalink
Bugfix (#167)
Browse files Browse the repository at this point in the history
* Bugfix

Calling phipper.utils.to_wide_csv was causing an error

* Increment version for bugfix

* bumpver

Co-authored-by: Jared Galloway <jaredgalloway07@gmail.com>
  • Loading branch information
sminot and jgallowa07 authored Oct 27, 2022
1 parent 43f11b7 commit d7e31a1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
3 changes: 2 additions & 1 deletion phippery/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# __init__.py

__version__ = "1.1.2"

__version__ = "1.1.3"

from phippery.utils import *
from phippery.normalize import *
Expand Down
10 changes: 7 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ build-backend = "setuptools.build_meta"

[project]
name = "phippery"
version = "1.1.2"

version = "1.1.3"

description = "Tools for analyzing PhIP-Seq Data."
readme = "README.md"
authors = [
Expand Down Expand Up @@ -58,7 +60,9 @@ packages = ["phippery"]
phippery = "phippery.cli:cli"

[tool.bumpver]
current_version = "1.1.2"

current_version = "1.1.3"

version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
Expand All @@ -70,7 +74,7 @@ push = false
'current_version = "{version}"', 'version = "{version}"'
]
"phippery/__init__.py" = ["{version}"]
"Dockerfile" = ["\tversion {version}"]
"Dockerfile" = ['\tversion "{version}"']
#"README.md" = [
# "{version}",
#]
Expand Down

0 comments on commit d7e31a1

Please sign in to comment.