From 5a57f41b7c0ca13ae540d5f7b34c6aa33ad2c315 Mon Sep 17 00:00:00 2001 From: Joe Brown Date: Thu, 12 Sep 2019 12:02:37 -0600 Subject: [PATCH] bumps version --- docker/Dockerfile | 2 +- nextflow.config | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 89caa9e..0f68b98 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -4,4 +4,4 @@ RUN apt-get update && apt-get install -y procps RUN conda create -n env -c conda-forge python=3.7 numpy>=1.16.2 lzstring>=1.0.4 jinja2>=2.10.1 RUN echo "source activate env" > ~/.bashrc ENV PATH /opt/conda/envs/env/bin:$PATH -RUN /opt/conda/envs/env/bin/pip install --no-cache-dir covviz==1.1.2 +RUN /opt/conda/envs/env/bin/pip install --no-cache-dir covviz==1.1.4 diff --git a/nextflow.config b/nextflow.config index d2cc648..6471b1b 100644 --- a/nextflow.config +++ b/nextflow.config @@ -25,7 +25,7 @@ process { errorStrategy = { task.exitStatus in [1,143,137,104,134,139] ? 'retry' : 'terminate' } maxRetries = 3 maxErrors = '-1' - container = 'brwnj/covviz:v1.1.2' + container = 'brwnj/covviz:v1.1.4' withLabel: 'indexcov' { container = 'brentp/smoove:v0.2.3' memory = 8.GB diff --git a/setup.py b/setup.py index 3683434..9c8fb3e 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ EMAIL = "brwnjm@gmail.com" AUTHOR = "Joe Brown" REQUIRES_PYTHON = ">=3.6.0" -VERSION = "1.1.3" +VERSION = "1.1.4" # What packages are required for this module to be executed? REQUIRED = ["Jinja2", "lzstring", "numpy", "pandas"]