From e5e86ce41532953961eca7ec8965c7b71dbe51d9 Mon Sep 17 00:00:00 2001 From: Pallab Pain Date: Fri, 13 Dec 2024 10:59:49 +0530 Subject: [PATCH] ci: pins the uv version to v0.4.22 --- .github/workflows/pypi.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index e40d4fc..6e53cf1 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -14,8 +14,14 @@ jobs: - name: Checkout Code uses: actions/checkout@v4 + # We are pinning uv to lower version to workaround the existing + # bugs in setuptools build system. We can unpin onces the issue + # is resolved in upstream repos. + # Bug: https://github.com/pypa/setuptools/issues/4759 - name: Install uv - uses: astral-sh/setup-uv@v3 + uses: astral-sh/setup-uv@v4 + with: + version: '0.4.22' - name: Publish to pypi run: |