Skip to content

Commit 16ca552

Browse files
authored
Merge pull request #228 from pbashyal-nmdp/missing_requirements
Missing requirements.txt in distribution
2 parents 7ae9c78 + aa0b250 commit 16ca552

File tree

7 files changed

+10
-6
lines changed

7 files changed

+10
-6
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.0.0rc6
7+
ARG PY_ARD_VERSION=1.0.0rc7
88

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

MANIFEST.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ include AUTHORS.rst
33
include CONTRIBUTING.rst
44
include HISTORY.rst
55
include LICENSE
6-
include README.rst
6+
include README.md
77
include pyard/*.csv
8+
include requirements.txt
9+
include requirements-tests.txt
810

911
recursive-exclude tests *
1012
recursive-exclude * __pycache__

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ Human leukocyte antigen (HLA) genes encode cell surface proteins that are import
3838
```shell
3939
pip install py-ard
4040
```
41+
Note: With `py-ard` version *1.0.0* and higher, the redux API has changed. If your use requires the older API, please install with `pip install py-ard==0.9.2`
42+
4143

4244
### Install With Homebrew
4345

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.0.0rc6"
5+
version: "1.0.0rc7"
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
@@ -27,7 +27,7 @@
2727
from .misc import get_imgt_db_versions as db_versions
2828

2929
__author__ = """NMDP Bioinformatics"""
30-
__version__ = "1.0.0rc6"
30+
__version__ = "1.0.0rc7"
3131

3232

3333
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.0.0rc6
2+
current_version = 1.0.0rc7
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.0.0rc6",
39+
version="1.0.0rc7",
4040
description="ARD reduction for HLA with Python",
4141
long_description=readme,
4242
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)