Skip to content

Commit a4f6931

Browse files
Bump version: 1.1.1 → 1.1.2 (#318)
* Bump version: 1.1.1 → 1.1.2 * Fix space issues
1 parent 1d09098 commit a4f6931

File tree

6 files changed

+5
-8
lines changed

6 files changed

+5
-8
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ LABEL MAINTAINER="Pradeep Bashyal"
44

55
WORKDIR /app
66

7-
ARG PY_ARD_VERSION=1.1.1
7+
ARG PY_ARD_VERSION=1.1.2
88

99
COPY requirements.txt /app
1010
RUN pip install --no-cache-dir --upgrade pip && \

api-spec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: 3.0.3
22
info:
33
title: ARD Reduction
44
description: Reduce to ARD Level
5-
version: "1.1.1"
5+
version: "1.1.2"
66
servers:
77
- url: 'http://localhost:8080'
88
tags:

pyard/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from .misc import get_imgt_db_versions as db_versions
2727

2828
__author__ = """NMDP Bioinformatics"""
29-
__version__ = "1.1.1"
29+
__version__ = "1.1.2"
3030

3131

3232
def init(

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.1.1
2+
current_version = 1.1.2
33
commit = True
44
tag = True
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
setup(
3838
name="py-ard",
39-
version="1.1.1",
39+
version="1.1.2",
4040
description="ARD reduction for HLA with Python",
4141
long_description=readme,
4242
long_description_content_type="text/markdown",

tests/test_pyard.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,17 +206,14 @@ def test_is_null(self):
206206
self.ard.is_null(allele), msg="MACs shouldn't be called as Nulls"
207207
)
208208

209-
210209
def test_default_redux_is_lgx(self):
211210
allele = "A*24:BKKPV+A*26:03^B*15:BKNTS+B*15:07"
212211
lgx_redux = self.ard.redux(allele, "lgx")
213212
default_redux = self.ard.redux(allele)
214213
self.assertEqual(lgx_redux, default_redux, msg="Default redux should be lgx")
215214

216-
217215
def test_mac_is_reversible(self):
218216
mac_code = "A*68:AJEBX"
219217
expanded_mac = self.ard.expand_mac(mac_code)
220218
lookup_mac = self.ard.lookup_mac(expanded_mac)
221219
self.assertEqual(mac_code, lookup_mac, msg="MACs should be reversible")
222-

0 commit comments

Comments
 (0)