Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ docker: docker-build ## build a docker image and run the service

install: clean ## install the package to the active Python's site-packages
pip install --upgrade pip
pip install git+https://github.com/nmdp-bioinformatics/py-graph-imputation
pip install -r requirements.txt
pip install -r requirements-tests.txt
pip install -r requirements-dev.txt
Expand Down
2 changes: 1 addition & 1 deletion my_project_template/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
"""Top-level package for My Project Template."""

__organization__ = "NMDP/CIBMTR Bioinformatics"
__version__ = "0.0.1"
__version__ = "0.0.2"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
toml==0.10.2
#git+https://github.com/nmdp-bioinformatics/py-graph-imputation
py-graph-imputation==0.0.12
py-ard==1.0.9
tqdm==4.66.1
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.1
current_version = 0.0.2
commit = True
tag = True

Expand All @@ -18,5 +18,4 @@ universal = 1
exclude = docs

[aliases]
# Define setup.py command aliases here
test = pytest
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def build_include_dirs():

setup(
name="py-graph-match",
version="0.0.1",
version="0.0.2",
author="Pradeep Bashyal",
author_email="pbashyal@nmdp.org",
python_requires=">=3.8",
Expand Down