File tree Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Original file line number Diff line number Diff line change 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/*
Original file line number Diff line number Diff line change 11name = "labelbox"
2- __version__ = "2.5.6 "
2+ __version__ = "2.5b0+mea "
33
44from labelbox .client import Client
55from labelbox .schema .model import Model
You can’t perform that action at this time.
0 commit comments