Skip to content

Commit c37f769

Browse files
committed
Version bump
1 parent acc02fe commit c37f769

File tree

3 files changed

+26
-1
lines changed

3 files changed

+26
-1
lines changed

.github/workflows/pre_release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@ jobs:
3333
password: ${{ secrets.DOCKER_PASSWORD }}
3434
repository: superannotate/pythonsdk
3535
tag_with_ref: true
36+
file: ./Dockerfile_prerelease

Dockerfile_prerelease

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
FROM ubuntu:20.04
2+
ENV LANG C.UTF-8
3+
4+
SHELL ["/bin/bash", "-c"]
5+
6+
ENV DEBIAN_FRONTEND noninteractive
7+
ENV PATH="/root/.local/bin:${PATH}"
8+
9+
10+
RUN apt-get update && apt-get dist-upgrade -y && apt-get install -y \
11+
ca-certificates python3 python3-pip libgl1-mesa-dev libglib2.0-0 libsm6 libxrender1 libxext6 nano vim htop && \
12+
rm -rf /var/lib/apt/lists/*
13+
14+
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 1
15+
RUN update-alternatives --install /usr/local/bin/pip pip /usr/bin/pip3 1
16+
17+
RUN apt-get install -y build-essential && \
18+
pip install --no-cache-dir --pre superannotate && \
19+
apt-get remove -y build-essential && \
20+
apt-get -y autoremove && \
21+
rm -rf /root/.cache/pip && \
22+
rm -rf /var/lib/apt/lists/*
23+
24+
CMD ["/bin/bash"]

superannotate/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.0.0b2"
1+
__version__ = "3.0.0b3"

0 commit comments

Comments
 (0)