From ed7d183bed94d5b48b270586274a76cf6de8902c Mon Sep 17 00:00:00 2001 From: Logan Adams <114770087+loadams@users.noreply.github.com> Date: Wed, 4 Dec 2024 12:39:45 -0800 Subject: [PATCH] Update python version but now we need to include setuptools on our own (#6787) TODO: - [x] determine if this means we should technically add setuptools to the requirements.txt --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 02881ef12f39..b2ccca69dfda 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,7 +7,7 @@ on: jobs: deploy: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 environment: release-env steps: @@ -25,6 +25,7 @@ jobs: python release/check_release_version.py --release_version ${{ env.RELEASE_VERSION }} - name: Build DeepSpeed run: | + pip install setuptools DS_BUILD_STRING=" " python setup.py sdist - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1