Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: build with uv installs too #107

Merged
merged 1 commit into from
Mar 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ runs:
export SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)

if [[ "${{ inputs.skip-wheel }}" == "true" ]]; then
/tmp/baipp/bin/python -m build --sdist --outdir /tmp/baipp/dist
/tmp/baipp/bin/python -m build --installer=uv --sdist --outdir /tmp/baipp/dist
else
/tmp/baipp/bin/python -m build --outdir /tmp/baipp/dist
/tmp/baipp/bin/python -m build --installer=uv --outdir /tmp/baipp/dist
fi
shell: bash
working-directory: ${{ inputs.path }}
Expand Down
6 changes: 3 additions & 3 deletions requirements/tools.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ attrs==23.2.0 \
--hash=sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30 \
--hash=sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1
# via check-wheel-contents
build==1.1.1 \
--hash=sha256:8ed0851ee76e6e38adce47e4bee3b51c771d86c64cf578d0c2245567ee200e73 \
--hash=sha256:8eea65bb45b1aac2e734ba2cc8dad3a6d97d97901a395bd0ed3e7b46953d2a31
build==1.2.0 \
--hash=sha256:49df7f8e1e74d345fe71e54f5d56423b2111eda89e3da53a2c18392954dade1d \
--hash=sha256:6105465d9b233433ce8ffa151c760f674446ba766af0290fc14bfa32aef92a04
certifi==2024.2.2 \
--hash=sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f \
--hash=sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1
Expand Down