Skip to content

Commit 5604846

Browse files
Merge pull request #217 from skyflowapi/skyflow-vivek/SK-1773-python-v2-GA-release
SK-1773 Update release workflow
2 parents 23c1cf9 + 080d5b5 commit 5604846

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/shared-build-and-deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,6 @@ jobs:
2727
python -m pip install --upgrade pip
2828
pip install setuptools wheel twine
2929
30-
- name: Build and install skyflow package
31-
run: |
32-
python setup.py sdist bdist_wheel
33-
pip install dist/skyflow-*.whl
34-
3530
- name: Resolve Branch for the Tagged Commit
3631
id: resolve-branch
3732
if: ${{ inputs.tag == 'beta' || inputs.tag == 'public' }}
@@ -87,6 +82,11 @@ jobs:
8782
git push origin ${{ env.branch_name }}
8883
fi
8984
85+
- name: Build and install skyflow package
86+
run: |
87+
python setup.py sdist bdist_wheel
88+
pip install dist/skyflow-*.whl
89+
9090
- name: Build and Publish Package
9191
if: ${{ inputs.tag == 'beta' || inputs.tag == 'public' }}
9292
env:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

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

1212
setup(
1313
name='skyflow',

skyflow/utils/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SDK_VERSION = '2.0.0'
1+
SDK_VERSION = '1.15.8.dev0+a22b9c6'

0 commit comments

Comments
 (0)