-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version to 1.5.5 in preparation of a release
- Loading branch information
1 parent
e25c99d
commit 496934e
Showing
5 changed files
with
10 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
FROM python:3.7 | ||
MAINTAINER Deepak Unni "[email protected]" | ||
MAINTAINER Sierra Moxon "[email protected]" | ||
|
||
# Clone repository | ||
RUN git clone https://github.com/NCATS-Tangerine/kgx | ||
|
||
# Setup | ||
RUN cd kgx && git checkout tags/1.5.4 && pip install -r requirements.txt && python setup.py install | ||
RUN cd kgx && git checkout tags/1.5.5 && pip install -r requirements.txt && python setup.py install | ||
|
||
# Make data directory | ||
RUN mkdir data | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
""" | ||
KGX Package | ||
""" | ||
__version__ = "1.5.4" | ||
__version__ = "1.5.5" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
AUTHOR = 'Deepak Unni, Sierra Moxon, Richard Bruskiewich' | ||
EMAIL = '[email protected], [email protected], [email protected]' | ||
REQUIRES_PYTHON = '>=3.7.0' | ||
VERSION = '1.5.4' | ||
VERSION = '1.5.5' | ||
LICENSE = 'BSD' | ||
|
||
with open("requirements.txt", "r") as FH: | ||
|