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

Prepare for 0.4.5 #525

Merged
merged 3 commits into from
Sep 5, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@ jobs:

test_s390x_big_endian:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
name: Test bigendian - S390X
steps:
- uses: actions/checkout@v2
Expand All @@ -104,7 +107,7 @@ jobs:
with:
# list of Docker images to use as base name for tags
images: |
ghcr.io/safetensors/s390x
ghcr.io/huggingface/safetensors/s390x
# generate Docker tags based on the following events/attributes
tags: |
type=schedule
Expand All @@ -127,5 +130,5 @@ jobs:
file: Dockerfile.s390x.test
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=registry,ref=ghcr.io/safetensors/s390x:cache,mode=max
cache-to: type=registry,ref=ghcr.io/safetensors/s390x:cache,mode=max
cache-from: type=registry,ref=ghcr.io/huggingface/safetensors/s390x:cache,mode=max
cache-to: type=registry,ref=ghcr.io/huggingface/safetensors/s390x:cache,mode=max
2 changes: 1 addition & 1 deletion bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "safetensors-python"
version = "0.4.5-dev.0"
version = "0.4.6-dev.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion safetensors/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "safetensors"
version = "0.4.5-dev.0"
version = "0.4.6-dev.0"
edition = "2021"
homepage = "https://github.com/huggingface/safetensors"
repository = "https://github.com/huggingface/safetensors"
Expand Down
Loading