Skip to content

Commit 6842e95

Browse files
Merge pull request #255 from jeromekelleher/pin-numpy-zarr
Distribution maintenance
2 parents 31a5935 + f11b503 commit 6842e95

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 0.1.1 2024-06-19
2+
3+
Maintenance release:
4+
5+
- Pin numpy to < 2
6+
- Pin Zarr to < 3
7+
18
# 0.1.0 2024-06-10
29

310
- Initial production-ready version.

docs/Makefile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ dist: ${CASTS}
2424
clean:
2525
rm -fR $(BUILDDIR)
2626
rm -f _static/*.cast
27+
rm sample.vcf.gz*
2728

2829

2930
sample.vcf.gz:
@@ -35,12 +36,15 @@ sample.vcf.gz:
3536

3637
_static/vcf2zarr_convert.cast: sample.vcf.gz
3738
rm -fR sample.vcz
38-
asciinema-automation cast_scripts/vcf2zarr_convert.sh $@
39+
asciinema-automation -d cast_scripts/vcf2zarr_convert.sh $@
40+
cat _static/vcf2zarr_convert.log
41+
asciinema play _static/vcf2zarr_convert.cast
3942
cp -R sample.vcz vcf2zarr
4043

4144
# TODO rename this cast
4245
_static/vcf2zarr_explode.cast: sample.vcf.gz
4346
rm -Rf sample.icf sample.vcz
44-
asciinema-automation cast_scripts/vcf2zarr_explode.sh $@
47+
asciinema-automation -d cast_scripts/vcf2zarr_explode.sh $@
48+
cat _static/vcf2zarr_explode.log
49+
asciinema play _static/vcf2zarr_explode.cast
4550
cp -R sample.icf sample.vcz vcf2zarr
46-

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ authors = [
1111
{name = "sgkit Developers", email = "[email protected]"},
1212
]
1313
dependencies = [
14-
"numpy",
15-
"zarr >= 2.17",
14+
"numpy < 2",
15+
"zarr >= 2.17,< 3",
1616
"click",
1717
"tabulate",
1818
"tqdm",
@@ -60,7 +60,7 @@ dev = [
6060
]
6161

6262
[tool.setuptools]
63-
packages = ["bio2zarr"]
63+
packages = ["bio2zarr", "bio2zarr.vcf2zarr"]
6464

6565
[tool.setuptools_scm]
6666
version_file = "bio2zarr/_version.py"

0 commit comments

Comments
 (0)