From 59f6b506919533c19bcd2cd15a723f722d43aac5 Mon Sep 17 00:00:00 2001 From: Pradeep Bashyal Date: Fri, 14 Feb 2025 08:32:52 -0600 Subject: [PATCH 1/3] Added setuptools to the requirements for Python >= 3.12 --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 75d62c0..3786462 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ +setuptools toml==0.10.2 numpy==2.0.2 pandas==2.2.2 From c2f41d5948eebfaed9e99d0fcdd15a6a08209c0a Mon Sep 17 00:00:00 2001 From: Pradeep Bashyal Date: Fri, 14 Feb 2025 08:33:09 -0600 Subject: [PATCH 2/3] =?UTF-8?q?Bump=20version:=201.5.3=20=E2=86=92=201.5.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- api-spec.yaml | 2 +- pyard/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 23df776..c842f82 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ LABEL MAINTAINER="Pradeep Bashyal" WORKDIR /app -ARG PY_ARD_VERSION=1.5.3 +ARG PY_ARD_VERSION=1.5.4 COPY requirements.txt /app RUN pip install --no-cache-dir --upgrade pip && \ diff --git a/api-spec.yaml b/api-spec.yaml index a9a4a84..88b17b3 100644 --- a/api-spec.yaml +++ b/api-spec.yaml @@ -2,7 +2,7 @@ openapi: 3.0.3 info: title: ARD Reduction description: Reduce to ARD Level - version: "1.5.3" + version: "1.5.4" servers: - url: 'http://localhost:8080' tags: diff --git a/pyard/__init__.py b/pyard/__init__.py index 4672fad..67f9863 100644 --- a/pyard/__init__.py +++ b/pyard/__init__.py @@ -26,7 +26,7 @@ from .misc import get_imgt_db_versions as db_versions __author__ = """NMDP Bioinformatics""" -__version__ = "1.5.3" +__version__ = "1.5.4" def init( diff --git a/setup.cfg b/setup.cfg index 2f89ff7..a916518 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.3 +current_version = 1.5.4 commit = True tag = True diff --git a/setup.py b/setup.py index 6f0f9db..cc7b1f7 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ setup( name="py-ard", - version="1.5.3", + version="1.5.4", description="ARD reduction for HLA with Python", long_description=readme, long_description_content_type="text/markdown", From 922bfd698c7004390364d205621c9690954e2358 Mon Sep 17 00:00:00 2001 From: Pradeep Bashyal Date: Fri, 14 Feb 2025 15:35:32 -0600 Subject: [PATCH 3/3] Set setuptools to 75.8.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 3786462..d82c029 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -setuptools +setuptools==75.8.0 toml==0.10.2 numpy==2.0.2 pandas==2.2.2