Skip to content

Commit feb3dfb

Browse files
authored
Merge pull request #167 from Labelbox/ms/pypi-release-beta
twine upload mea
2 parents 4bfa6be + c8ab5c1 commit feb3dfb

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

.github/workflows/publish-mea.yaml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Labelbox Python SDK - MEA
2+
3+
on:
4+
push:
5+
branches: [ mea-main ]
6+
jobs:
7+
deploy:
8+
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
14+
- name: Set up Python
15+
uses: actions/setup-python@v2
16+
with:
17+
python-version: '3.x'
18+
19+
- name: Install dependencies
20+
run: |
21+
python -m pip install --upgrade pip
22+
pip install setuptools wheel twine
23+
24+
- name: Build
25+
run: |
26+
python setup.py sdist bdist_wheel
27+
28+
- name: Publish
29+
env:
30+
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
31+
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
32+
run: |
33+
twine upload dist/*

labelbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "labelbox"
2-
__version__ = "2.5.6"
2+
__version__ = "2.5b0+mea"
33

44
from labelbox.client import Client
55
from labelbox.schema.model import Model

0 commit comments

Comments
 (0)