Skip to content

Commit 135ebe8

Browse files
committed
fix ci
1 parent aac5672 commit 135ebe8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,11 @@ jobs:
2828
distribution: 'temurin'
2929
cache: maven
3030

31-
- name: Set up uv and zarrita
31+
- name: Install uv
32+
uses: astral-sh/setup-uv@v6
33+
34+
- name: Set up zarrita
3235
run: |
33-
curl -Ls https://github.com/astral-sh/uv/releases/latest/download/uv-installer.sh | bash
3436
uv venv && uv init
3537
uv add zarrita
3638

src/main/java/dev/zarr/zarrjava/v3/Array.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,7 @@ public static Array create(StoreHandle storeHandle, ArrayMetadata arrayMetadata,
9191
* raise an exception if a Zarr array already exists at the specified storage location.
9292
*
9393
* @param storeHandle the storage location of the Zarr array
94-
* @param arrayMetadataBuilderMapper a callback of ArrayMetadataBuilder -> ArrayMetadataBuilder that is
95-
* used to construct the metadata of the Zarr array
94+
* @param arrayMetadataBuilderMapper a callback that is used to construct the metadata of the Zarr array
9695
* @param existsOk if true, no exception is raised if the Zarr array already exists
9796
* @throws IOException if the metadata cannot be serialized
9897
* @throws ZarrException if the Zarr array cannot be created
@@ -180,8 +179,7 @@ public Array setAttributes(Map<String, Object> newAttributes) throws ZarrExcepti
180179
* callback may be mutated. This method overwrites and removes any existing attributes. This
181180
* method returns a new instance of the Zarr array class and the old instance becomes invalid.
182181
*
183-
* @param attributeMapper a callback of Map<String, Object> -> Map<String, Object> that is used to construct the new
184-
* attributes
182+
* @param attributeMapper the callback that is used to construct the new attributes
185183
* @throws ZarrException throws ZarrException if the new metadata is invalid
186184
* @throws IOException throws IOException if the new metadata cannot be serialized
187185
*/

0 commit comments

Comments
 (0)