Skip to content

Commit

Permalink
ci: pins uv verison in pypi.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pallabpain committed Dec 11, 2024
1 parent 7519f57 commit 4723701
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "rapyuta-io-cli"
dynamic = ["version"]
description = "rapyuta.io Command Line Interface"
readme = "README.md"
license = { text = "Apache-2.0"}
license = { file = "LICENSE" }
requires-python = ">=3.8.10"
authors = [
{ name = "Rapyuta Robotics", email = "[email protected]" },
Expand Down

0 comments on commit 4723701

Please sign in to comment.