Skip to content

Commit a055d9a

Browse files
committed
bump up the version for release
1 parent c06d9e1 commit a055d9a

File tree

8 files changed

+9
-6
lines changed

8 files changed

+9
-6
lines changed

charts/subaligner/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ name: subaligner
33
description: A Helm chart for subaligner CLIs
44
icon: https://raw.githubusercontent.com/baxtree/subaligner/master/figures/subaligner.png
55
type: application
6-
version: 0.1.1
7-
appVersion: "0.3.7"
6+
version: 0.1.2
7+
appVersion: "0.3.8"

docker/Dockerfile-ArchLinux

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN ["/bin/bash", "-c", "pacman --noconfirm -Syu &&\
1616
/usr/sbin/pyenv local 3.8.12 &&\
1717
ln -s /root/.pyenv/versions/3.8.12/bin/python /usr/bin/python &&\
1818
python -m pip install --upgrade pip &&\
19-
python -m pip install wheel &&\
19+
python3 -m pip install --upgrade \"setuptools<65.0.0\" wheel &&\
2020
python -m pip install \"subaligner==${RELEASE_VERSION}\" &&\
2121
python -m pip install \"subaligner[llm]==${RELEASE_VERSION}\""]
2222

docker/Dockerfile-CentOS7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ RUN ["/bin/bash", "-c", "dnf install -y epel-release dnf-utils &&\
2525
dnf makecache &&\
2626
dnf upgrade python3-pip &&\
2727
python3 -m pip install --upgrade pip &&\
28-
python3 -m pip install --upgrade setuptools wheel &&\
28+
python3 -m pip install --upgrade \"setuptools<65.0.0\" wheel &&\
2929
python3 -m pip install \"subaligner==${RELEASE_VERSION}\" &&\
3030
python3 -m pip install \"subaligner[llm]==${RELEASE_VERSION}\""]

docker/Dockerfile-Debian11

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,6 @@ RUN ["/bin/bash", "-c", "apt -y update &&\
1818
apt -y install python3-pip &&\
1919
apt -y install python3-venv &&\
2020
python3 -m pip install --upgrade pip &&\
21+
python3 -m pip install --upgrade \"setuptools<65.0.0\" wheel &&\
2122
python3 -m pip install \"subaligner==${RELEASE_VERSION}\" &&\
2223
python3 -m pip install \"subaligner[harmony]==${RELEASE_VERSION}\""]

docker/Dockerfile-Fedora34

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,6 @@ RUN ["/bin/bash", "-c", "dnf install -y dnf-utils &&\
2424
dnf install -y python3-pip &&\
2525
dnf install -y hdf5 hdf5-devel &&\
2626
pip3 install --upgrade pip &&\
27+
python3 -m pip install --upgrade \"setuptools<65.0.0\" wheel &&\
2728
python3 -m pip install \"subaligner==${RELEASE_VERSION}\" &&\
2829
python3 -m pip install \"subaligner[harmony]==${RELEASE_VERSION}\""]

docker/Dockerfile-Ubuntu20

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@ RUN ["/bin/bash", "-c", "apt-get -y update &&\
1616
apt-get -y install python3-tk &&\
1717
apt-get -y install python3-pip &&\
1818
python3 -m pip install --upgrade pip &&\
19+
python3 -m pip install --upgrade \"setuptools<65.0.0\" wheel &&\
1920
python3 -m pip install \"subaligner==${RELEASE_VERSION}\" &&\
2021
python3 -m pip install \"subaligner[harmony]==${RELEASE_VERSION}\""]

docker/Dockerfile-Ubuntu22

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ RUN ["/bin/bash", "-c", "apt-get -y update &&\
1616
apt-get -y install python3-tk &&\
1717
apt-get -y install python3-pip &&\
1818
python3 -m pip install --upgrade pip &&\
19-
python3 -m pip install --upgrade setuptools wheel &&\
19+
python3 -m pip install --upgrade \"setuptools<65.0.0\" wheel &&\
2020
python3 -m pip install \"subaligner==${RELEASE_VERSION}\" &&\
2121
python3 -m pip install \"subaligner[harmony]==${RELEASE_VERSION}\""]

subaligner/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""The semver for the current release."""
2-
__version__ = "0.3.7"
2+
__version__ = "0.3.8"

0 commit comments

Comments
 (0)