Skip to content

Commit edc6b14

Browse files
committed
test: update test-scope dependencies to latest releases
1 parent 273be15 commit edc6b14

2 files changed

Lines changed: 11 additions & 12 deletions

File tree

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -151,14 +151,14 @@
151151
<n5-spec.version>4.0.0</n5-spec.version>
152152

153153
<!-- Only used for test scope -->
154-
<n5-universe.version>2.4.0-alpha-9</n5-universe.version>
155-
<n5-aws-s3.version>4.4.0-alpha-9</n5-aws-s3.version>
156-
<n5-blosc.version>2.0.0-alpha-4</n5-blosc.version>
157-
<n5-google-cloud.version>5.2.0-alpha-7</n5-google-cloud.version>
158-
<n5-hdf5.version>2.3.0-alpha-7</n5-hdf5.version>
159-
<n5-imglib2.version>7.1.0-alpha-8</n5-imglib2.version>
160-
<n5-zarr.version>2.0.0-alpha-8</n5-zarr.version>
161-
<n5-zstandard.version>2.0.0-alpha-4</n5-zstandard.version>
154+
<n5-universe.version>3.0.0</n5-universe.version>
155+
<n5-aws-s3.version>5.0.0</n5-aws-s3.version>
156+
<n5-blosc.version>2.0.0</n5-blosc.version>
157+
<n5-google-cloud.version>6.0.0</n5-google-cloud.version>
158+
<n5-hdf5.version>3.0.0</n5-hdf5.version>
159+
<n5-imglib2.version>8.0.0</n5-imglib2.version>
160+
<n5-zarr.version>2.0.1</n5-zarr.version>
161+
<n5-zstandard.version>2.0.0</n5-zstandard.version>
162162
</properties>
163163

164164
<dependencies>

src/test/java/org/janelia/saalfeldlab/n5/WriteLockExp.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ public void run() {
5050
if( i % 1000 == 0)
5151
System.out.println("iter: " + i);
5252

53-
// n5.writeRegion("", attrs, new long[]{0,0}, dimensions, blockSupplier(shardIdx, chunkSize, chunkN), true);
5453
n5.writeChunks("", attrs, block);
5554

5655
}
@@ -62,9 +61,9 @@ public void run() {
6261

6362
public DatasetAttributes getOrCreateDataset(N5Writer n5) {
6463

65-
ZarrV3DatasetAttributes tmpAttrs = ZarrV3DatasetAttributes.builder(dimensions, DataType.INT32)
66-
.shardShape(shardSize)
67-
.blockSize(chunkSize)
64+
final ZarrV3DatasetAttributes tmpAttrs = ZarrV3DatasetAttributes.builder(dimensions, DataType.INT32)
65+
.blockSize(shardSize)
66+
.chunkSize(chunkSize)
6867
.compression(new ZstandardCompression())
6968
.build();
7069

0 commit comments

Comments
 (0)