Skip to content

Commit a84868a

Browse files
authored
Merge pull request #358 from pbashyal-nmdp/no-pandas
Remove pandas library dependency
2 parents 3371b9a + a855c1f commit a84868a

32 files changed

+1902
-834
lines changed

.github/workflows/python-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ jobs:
4141
- name: Run Unit Tests
4242
run: |
4343
# When run the first time, it'll build the library
44-
python -m unittest tests.test_pyard tests.test_smart_sort
44+
python -m unittest tests.unit.test_pyard tests.unit.test_smart_sort
4545
# When run the second time, it should use the already installed library
46-
python -m unittest tests.test_pyard tests.test_smart_sort
46+
python -m unittest tests.unit.test_pyard tests.unit.test_smart_sort

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.5.5
7+
ARG PY_ARD_VERSION=2.0.0b1
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.5.5"
5+
version: "2.0.0b1"
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.5.5"
29+
__version__ = "2.0.0b1"
3030

3131

3232
def init(

0 commit comments

Comments
 (0)