File tree Expand file tree Collapse file tree 3 files changed +17
-6
lines changed Expand file tree Collapse file tree 3 files changed +17
-6
lines changed Original file line number Diff line number Diff line change
1
+ # 0.1.1 2024-06-19
2
+
3
+ Maintenance release:
4
+
5
+ - Pin numpy to < 2
6
+ - Pin Zarr to < 3
7
+
1
8
# 0.1.0 2024-06-10
2
9
3
10
- Initial production-ready version.
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ dist: ${CASTS}
24
24
clean :
25
25
rm -fR $(BUILDDIR )
26
26
rm -f _static/* .cast
27
+ rm sample.vcf.gz*
27
28
28
29
29
30
sample.vcf.gz :
@@ -35,12 +36,15 @@ sample.vcf.gz:
35
36
36
37
_static/vcf2zarr_convert.cast : sample.vcf.gz
37
38
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
39
42
cp -R sample.vcz vcf2zarr
40
43
41
44
# TODO rename this cast
42
45
_static/vcf2zarr_explode.cast : sample.vcf.gz
43
46
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
45
50
cp -R sample.icf sample.vcz vcf2zarr
46
-
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ authors = [
11
11
{
name =
" sgkit Developers" ,
email =
" [email protected] " },
12
12
]
13
13
dependencies = [
14
- " numpy" ,
15
- " zarr >= 2.17" ,
14
+ " numpy < 2 " ,
15
+ " zarr >= 2.17,< 3 " ,
16
16
" click" ,
17
17
" tabulate" ,
18
18
" tqdm" ,
@@ -60,7 +60,7 @@ dev = [
60
60
]
61
61
62
62
[tool .setuptools ]
63
- packages = [" bio2zarr" ]
63
+ packages = [" bio2zarr" , " bio2zarr.vcf2zarr " ]
64
64
65
65
[tool .setuptools_scm ]
66
66
version_file = " bio2zarr/_version.py"
You can’t perform that action at this time.
0 commit comments