From 080d5b51c76322f3b9d90a17b2034172f1e1e992 Mon Sep 17 00:00:00 2001 From: skyflow-vivek Date: Tue, 11 Nov 2025 19:43:18 +0530 Subject: [PATCH] SK-1773 Update release workflow --- .github/workflows/shared-build-and-deploy.yml | 10 +++++----- setup.py | 2 +- skyflow/utils/_version.py | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/shared-build-and-deploy.yml b/.github/workflows/shared-build-and-deploy.yml index e826c20..135b87b 100644 --- a/.github/workflows/shared-build-and-deploy.yml +++ b/.github/workflows/shared-build-and-deploy.yml @@ -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' }} @@ -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: diff --git a/setup.py b/setup.py index 9f06860..2c8f3e1 100644 --- a/setup.py +++ b/setup.py @@ -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', diff --git a/skyflow/utils/_version.py b/skyflow/utils/_version.py index 0d05fc3..da343d6 100644 --- a/skyflow/utils/_version.py +++ b/skyflow/utils/_version.py @@ -1 +1 @@ -SDK_VERSION = '2.0.0' \ No newline at end of file +SDK_VERSION = '1.15.8.dev0+a22b9c6' \ No newline at end of file