Skip to content

Commit

Permalink
fix: Update version number to 1.1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
cauliyang committed Feb 5, 2024
1 parent c669a43 commit 536fcb9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,4 @@ docs/api/*
.ipynb_checkpoints
.ltex
.ipynb_checkpoints
issues
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pxblat"
version = "1.1.18"
version = "1.1.19"
description = "A native python binding for blat suite"
authors = ["Yangyang Li <yangyang.li@northwestern.edu>"]
homepage = "https://github.com/ylab-hi/pxblat"
Expand Down
2 changes: 1 addition & 1 deletion src/pxblat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from .toolkit import two_bit_to_fa
from rich.traceback import install

__version__ = "1.1.10"
__version__ = "1.1.19"

install(show_locals=True)

Expand Down
3 changes: 1 addition & 2 deletions src/pxblat/server/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,8 @@ def query_server(
except ValueError as e:
if "No query results" in str(e):
return None
raise e
else:
if isinstance(res, str):
return _assign_info_to_query_result(read(res, "psl"))
return _assign_info_to_query_result(res)


Expand Down

0 comments on commit 536fcb9

Please sign in to comment.