From 23ac4952d08c020b392e051088d3dc198f8ee878 Mon Sep 17 00:00:00 2001 From: Danilo Horta Date: Sun, 1 Dec 2024 00:51:45 +0000 Subject: [PATCH] Fix file path and bump version in pyproject.toml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Updated file path in `h3daemon/h3daemon/sched.py` - Changed `version` to `0.14.9` in `pyproject.toml` This ensures the correct file path is used in the `SchedContext` class and reflects the latest updates by incrementing the version. 📂📝 --- h3daemon/h3daemon/sched.py | 2 +- h3daemon/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/h3daemon/h3daemon/sched.py b/h3daemon/h3daemon/sched.py index c243146..c8bfb0b 100644 --- a/h3daemon/h3daemon/sched.py +++ b/h3daemon/h3daemon/sched.py @@ -59,7 +59,7 @@ def __init__( self._stderr = stderr def open(self): - cmd = [self._exe, self._scr, str(self._hmmfile)] + cmd = [self._exe, self._scr, str(self._hmmfile.path)] cmd += [str(self._cport), str(self._wport)] self._sched = Sched( psutil.Popen( diff --git a/h3daemon/pyproject.toml b/h3daemon/pyproject.toml index 15e7953..22eb71f 100644 --- a/h3daemon/pyproject.toml +++ b/h3daemon/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "h3daemon" -version = "0.14.8" +version = "0.14.9" description = "HMMER server" authors = ["Danilo Horta "] license = "MIT"