Skip to content

Commit

Permalink
Merge pull request #228 from pbashyal-nmdp/missing_requirements
Browse files Browse the repository at this point in the history
Missing requirements.txt in distribution
  • Loading branch information
mmaiers-nmdp authored Apr 17, 2023
2 parents 7ae9c78 + aa0b250 commit 16ca552
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LABEL MAINTAINER="Pradeep Bashyal"

WORKDIR /app

ARG PY_ARD_VERSION=1.0.0rc6
ARG PY_ARD_VERSION=1.0.0rc7

COPY requirements.txt /app
RUN pip install --no-cache-dir --upgrade pip && \
Expand Down
4 changes: 3 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ include AUTHORS.rst
include CONTRIBUTING.rst
include HISTORY.rst
include LICENSE
include README.rst
include README.md
include pyard/*.csv
include requirements.txt
include requirements-tests.txt

recursive-exclude tests *
recursive-exclude * __pycache__
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ Human leukocyte antigen (HLA) genes encode cell surface proteins that are import
```shell
pip install py-ard
```
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`


### Install With Homebrew

Expand Down
2 changes: 1 addition & 1 deletion api-spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.3
info:
title: ARD Reduction
description: Reduce to ARD Level
version: "1.0.0rc6"
version: "1.0.0rc7"
servers:
- url: 'http://localhost:8080'
tags:
Expand Down
2 changes: 1 addition & 1 deletion pyard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from .misc import get_imgt_db_versions as db_versions

__author__ = """NMDP Bioinformatics"""
__version__ = "1.0.0rc6"
__version__ = "1.0.0rc7"


def init(
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.0rc6
current_version = 1.0.0rc7
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

setup(
name="py-ard",
version="1.0.0rc6",
version="1.0.0rc7",
description="ARD reduction for HLA with Python",
long_description=readme,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 16ca552

Please sign in to comment.