From 06254314e9331207c2c3460a5d883781f3259fbb Mon Sep 17 00:00:00 2001 From: pbashyal-nmdp Date: Wed, 17 Jan 2024 17:03:06 -0600 Subject: [PATCH 1/3] Updated to use py-graph-imputation from PyPi --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 5fba69b380230b8e95783026b914d9857dcafff1 Mon Sep 17 00:00:00 2001 From: pbashyal-nmdp Date: Wed, 17 Jan 2024 17:03:13 -0600 Subject: [PATCH 2/3] =?UTF-8?q?Bump=20version:=200.0.1=20=E2=86=92=200.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- my_project_template/__init__.py | 2 +- setup.cfg | 3 +-- setup.py | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) 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/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", From c73ee6c9efeb1e23f2e45cf9ec8bee6c287fd8b8 Mon Sep 17 00:00:00 2001 From: pbashyal-nmdp Date: Wed, 17 Jan 2024 17:05:20 -0600 Subject: [PATCH 3/3] remove install of grim from git --- Makefile | 1 - 1 file changed, 1 deletion(-) 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