@@ -57,27 +57,27 @@ test = "pytest {args}"
57
57
58
58
[[tool .hatch .envs .test .matrix ]]
59
59
python = [" 3.10" , " 3.11" , " 3.12" ]
60
- numpy-version = [" 1" , " 2" ]
60
+ numpy = [" 1" , " 2" ]
61
61
62
- # Only test numpy 2 with python 3.13
63
62
[[tool .hatch .envs .test .matrix ]]
64
- python = [" 3.13 " ]
65
- numpy-version = [" 2" ]
66
-
63
+ python = [" 3.10 " , " 3.11 " , " 3.12 " ]
64
+ numpy = [" 1 " , " 2" ]
65
+ asdf = [ " 3 " , " 4 " ]
67
66
68
67
[tool .hatch .envs .test .overrides ]
69
- matrix.numpy-version.dependencies = [
70
- { value = " numpy>=1,<2" , if = [
71
- " 1" ,
72
- ] },
73
- { value = " numpy>=2,<3" , if = [
74
- " 2" ,
75
- ] },
68
+ matrix.numpy.dependencies = [
69
+ { value = " numpy>=1,<2" , if = [" 1" ] },
70
+ { value = " numpy>=2,<3" , if = [" 2" ] },
76
71
{ value = " astropy>=6.1" , if = [
77
72
" 2" ,
78
73
] },
79
74
]
80
75
76
+ matrix.asdf.dependencies = [
77
+ { value = " asdf>=3,<4" , if = [" 3" ] },
78
+ { value = " asdf>=4,<5" , if = [" 4" ] },
79
+ ]
80
+
81
81
[tool .hatch .envs .docs ]
82
82
dependencies = [" sphinx" , " sphinx-autoapi" , " sphinx-book-theme" , " myst-parser" ]
83
83
0 commit comments