From 054d1b4af42b0d2eba9071509e5f7a73c20ffe2a Mon Sep 17 00:00:00 2001 From: Sejin Kim Date: Sun, 19 May 2024 00:35:33 -0400 Subject: [PATCH] skip autopipeline in pip testing --- .github/workflows/main.yml | 2 +- pyproject.toml | 2 +- src/imgtools/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f8c4f33..7544f6d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -126,5 +126,5 @@ jobs: - name: Install using PyPi run: | pip install med-imagetools - autopipeline + # autopipeline # pip install med-imagetools ==${{ needs.cd.outputs.version }} \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index d879932..af03df1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ [tool.poetry] name = "med-imagetools" packages = [{ include = "imgtools", from = "src" }] -version = "1.3.0" +version = "1.3.0.1" description = "Med-Imagetools: Transparent and Reproducible Medical Image Processing Pipelines in Python" authors = ["Sejin Kim, Benjamin Haibe-Kains"] license = "GPL-3.0" diff --git a/src/imgtools/__init__.py b/src/imgtools/__init__.py index 10f71db..7c211aa 100644 --- a/src/imgtools/__init__.py +++ b/src/imgtools/__init__.py @@ -1,4 +1,4 @@ from . import io, ops, utils, pipeline __all__ = ["io", "ops", "utils", "pipeline"] -__version__ = "1.3.0" \ No newline at end of file +__version__ = "1.3.0.1" \ No newline at end of file