diff --git a/Makefile b/Makefile index 43b4539..3af57dc 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/my_project_template/__init__.py b/my_project_template/__init__.py index 6a1f07d..85920b4 100644 --- a/my_project_template/__init__.py +++ b/my_project_template/__init__.py @@ -26,4 +26,4 @@ """Top-level package for My Project Template.""" __organization__ = "NMDP/CIBMTR Bioinformatics" -__version__ = "0.0.1" +__version__ = "0.0.2" diff --git a/requirements.txt b/requirements.txt index 55c6b9f..1054842 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 diff --git a/setup.cfg b/setup.cfg index 1a349c0..35a2784 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.1 +current_version = 0.0.2 commit = True tag = True @@ -18,5 +18,4 @@ universal = 1 exclude = docs [aliases] -# Define setup.py command aliases here test = pytest diff --git a/setup.py b/setup.py index 073654c..492ab26 100644 --- a/setup.py +++ b/setup.py @@ -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",