diff --git a/Dockerfile b/Dockerfile index 933269d..62d68dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM quay.io/hdc-workflows/ubuntu:20.04 ADD http://date.jsontest.com /etc/builddate LABEL maintainer "Jared Galloway " \ - version "1.1.3" \ + version "1.1.4" \ description "Common PhIP-Seq Workflows" # install needed tools @@ -30,7 +30,7 @@ RUN python3 -m venv $VIRTUAL_ENV ENV PATH="$VIRTUAL_ENV/bin:$PATH" # install phippery -RUN pip install git+https://github.com/matsengrp/phippery@1.1.3 +RUN pip install git+https://github.com/matsengrp/phippery@1.1.4 # install pre-build binary Bowtie1.3 RUN curl -fksSL https://sourceforge.net/projects/bowtie-bio/files/bowtie/1.3.1/bowtie-1.3.1-linux-x86_64.zip \ diff --git a/phippery/__init__.py b/phippery/__init__.py index 4cb4a14..08b93f9 100644 --- a/phippery/__init__.py +++ b/phippery/__init__.py @@ -1,7 +1,7 @@ # __init__.py -__version__ = "1.1.3" +__version__ = "1.1.4" from phippery.utils import * from phippery.normalize import * diff --git a/pyproject.toml b/pyproject.toml index e059beb..45a1d4e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "phippery" -version = "1.1.3" +version = "1.1.4" description = "Tools for analyzing PhIP-Seq Data." readme = "README.md" @@ -61,7 +61,7 @@ phippery = "phippery.cli:cli" [tool.bumpver] -current_version = "1.1.3" +current_version = "1.1.4" version_pattern = "MAJOR.MINOR.PATCH" commit_message = "bump version {old_version} -> {new_version}"