Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/shared-build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,6 @@ jobs:
python -m pip install --upgrade pip
pip install setuptools wheel twine

- name: Build and install skyflow package
run: |
python setup.py sdist bdist_wheel
pip install dist/skyflow-*.whl

- name: Resolve Branch for the Tagged Commit
id: resolve-branch
if: ${{ inputs.tag == 'beta' || inputs.tag == 'public' }}
Expand Down Expand Up @@ -87,6 +82,11 @@ jobs:
git push origin ${{ env.branch_name }}
fi

- name: Build and install skyflow package
run: |
python setup.py sdist bdist_wheel
pip install dist/skyflow-*.whl

- name: Build and Publish Package
if: ${{ inputs.tag == 'beta' || inputs.tag == 'public' }}
env:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

if sys.version_info < (3, 8):
raise RuntimeError("skyflow requires Python 3.8+")
current_version = '2.0.0'
current_version = '1.15.8.dev0+a22b9c6'

setup(
name='skyflow',
Expand Down
2 changes: 1 addition & 1 deletion skyflow/utils/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SDK_VERSION = '2.0.0'
SDK_VERSION = '1.15.8.dev0+a22b9c6'
Loading