Skip to content

Commit 2524e6d

Browse files
committed
Version bump
1 parent 1e38617 commit 2524e6d

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

.github/workflows/pre_release.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,23 @@ jobs:
99
runs-on: ubuntu-20.04
1010
steps:
1111
- uses: actions/checkout@v2
12+
- name: Set up Python
13+
uses: actions/setup-python@v2
14+
with:
15+
python-version: "3.7"
16+
- name: Install dependencies
17+
run: |
18+
python -m pip install --upgrade pip
19+
pip install setuptools wheel twine numpy yapf
20+
- name: Check formatting
21+
run: yapf -p -r --diff -e '*/pycocotools_sa' superannotate
22+
- name: Create distribution files
23+
run: python setup.py sdist
24+
- name: Publish distribution to PyPI
25+
if: startsWith(github.ref, 'refs/tags')
26+
uses: pypa/gh-action-pypi-publish@master
27+
with:
28+
password: ${{ secrets.pypi_password }}
1229
-
1330
name: Set up QEMU
1431
uses: docker/setup-qemu-action@v1
@@ -29,20 +46,3 @@ jobs:
2946
push: true
3047
tags: superannotate/pythonsdk:dev
3148
build-args: PIP_FLAGS=--pre
32-
- name: Set up Python
33-
uses: actions/setup-python@v2
34-
with:
35-
python-version: "3.7"
36-
- name: Install dependencies
37-
run: |
38-
python -m pip install --upgrade pip
39-
pip install setuptools wheel twine numpy yapf
40-
- name: Check formatting
41-
run: yapf -p -r --diff -e '*/pycocotools_sa' superannotate
42-
- name: Create distribution files
43-
run: python setup.py sdist
44-
- name: Publish distribution to PyPI
45-
if: startsWith(github.ref, 'refs/tags')
46-
uses: pypa/gh-action-pypi-publish@master
47-
with:
48-
password: ${{ secrets.pypi_password }}

superannotate/version.py

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

0 commit comments

Comments
 (0)