From 703aea951874153212ebb3d272349bf864dc90dc Mon Sep 17 00:00:00 2001 From: Devesh-Skyflow Date: Wed, 27 May 2026 18:50:15 +0530 Subject: [PATCH 1/2] fix: upgrade checkout and setup-python actions to fix auth failure actions/checkout@v2 fails with "could not read Username" on current GitHub. Upgrade to checkout@v4 and setup-python@v5. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/shared-build-and-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/shared-build-and-deploy.yml b/.github/workflows/shared-build-and-deploy.yml index 738ae2d..0bd1cc9 100644 --- a/.github/workflows/shared-build-and-deploy.yml +++ b/.github/workflows/shared-build-and-deploy.yml @@ -17,11 +17,11 @@ jobs: build-and-deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v5 - name: Install dependencies run: | python -m pip install --upgrade pip From 44a0decc05a7c3ea1ba5b6cc869babccd862e2cd Mon Sep 17 00:00:00 2001 From: Devesh-Skyflow Date: Wed, 27 May 2026 13:21:32 +0000 Subject: [PATCH 2/2] [AUTOMATED] Private Release 1.16.1.dev0+703aea9 --- setup.py | 2 +- skyflow/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index fe1951a..422e273 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ if sys.version_info < (3, 7): raise RuntimeError("skyflow requires Python 3.7+") -current_version = '2.1.1.dev0+7b39339' +current_version = '1.16.1.dev0+703aea9' setup( name='skyflow', diff --git a/skyflow/version.py b/skyflow/version.py index 2737ffb..fe6c7de 100644 --- a/skyflow/version.py +++ b/skyflow/version.py @@ -1 +1 @@ -SDK_VERSION = '2.1.1.dev0+7b39339' \ No newline at end of file +SDK_VERSION = '1.16.1.dev0+703aea9' \ No newline at end of file