diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5fcd5db..f2a40b9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,12 +13,12 @@ jobs: build-and-deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: token: ${{ secrets.PAT_ACTIONS }} ref: main fetch-depth: 0 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v5 - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/.github/workflows/shared-build-and-deploy.yml b/.github/workflows/shared-build-and-deploy.yml index 0bd1cc9..738ae2d 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@v4 + - uses: actions/checkout@v2 with: fetch-depth: 0 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v2 - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/setup.py b/setup.py index 422e273..f65126a 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 = '1.16.1.dev0+703aea9' +current_version = '1.16.1.dev0+eec539e' setup( name='skyflow', diff --git a/skyflow/version.py b/skyflow/version.py index fe6c7de..34087c4 100644 --- a/skyflow/version.py +++ b/skyflow/version.py @@ -1 +1 @@ -SDK_VERSION = '1.16.1.dev0+703aea9' \ No newline at end of file +SDK_VERSION = '1.16.1.dev0+eec539e' \ No newline at end of file