Skip to content

Commit

Permalink
Fix file path and bump version in pyproject.toml
Browse files Browse the repository at this point in the history
- 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. 📂📝
  • Loading branch information
horta committed Dec 1, 2024
1 parent ebb4590 commit 23ac495
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion h3daemon/h3daemon/sched.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion h3daemon/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "h3daemon"
version = "0.14.8"
version = "0.14.9"
description = "HMMER server"
authors = ["Danilo Horta <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 23ac495

Please sign in to comment.