From 3e1e6d9e6ab2aa6cdec38dfb00b58ea8a5cb86f8 Mon Sep 17 00:00:00 2001 From: Yangyang Li Date: Mon, 30 Oct 2023 09:59:49 -0500 Subject: [PATCH] chore: Bump version to 1.1.5 --- .github/workflows/release.yml | 5 ++--- docs/_templates/base.html | 2 +- pyproject.toml | 2 +- src/pxblat/__init__.py | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9679c785..ed73097d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -224,10 +224,9 @@ jobs: # path: ./wheelhouse/*.whl upload_to_pypi: - needs: - [ + needs: [ "release", - "build_wheels_macos_arm64", + # "build_wheels_macos_arm64", "build_wheels_macos", "build_wheels_linux", ] diff --git a/docs/_templates/base.html b/docs/_templates/base.html index faa058b4..60db3c10 100644 --- a/docs/_templates/base.html +++ b/docs/_templates/base.html @@ -1,6 +1,6 @@ {% extends "!base.html" %} {% block announce %}

Please Cite Me - v1.1.4 + v1.1.5

{% endblock %} diff --git a/pyproject.toml b/pyproject.toml index 7b184ad0..181eed2d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pxblat" -version = "1.1.4" +version = "1.1.5" description = "A native python binding for blat suite" authors = ["Yangyang Li "] homepage = "https://github.com/ylab-hi/pxblat" diff --git a/src/pxblat/__init__.py b/src/pxblat/__init__.py index 6ebc4c9f..188727a8 100644 --- a/src/pxblat/__init__.py +++ b/src/pxblat/__init__.py @@ -27,7 +27,7 @@ from .toolkit import two_bit_to_fa from rich.traceback import install -__version__ = "1.1.4" +__version__ = "1.1.5" install(show_locals=True)