Skip to content

Commit 513767b

Browse files
committed
Test on ctapipe 0.21.2
1 parent b526efb commit 513767b

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

.github/workflows/ci.yml

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ jobs:
2020
matrix:
2121
python-version: ["3.9", "3.10", "3.11"]
2222
ctapipe-version: ["0.19.3", "0.20.0"]
23+
include:
24+
# ctapipe 0.21 requires >= 3.10
25+
- python-version: "3.12"
26+
ctapipe-version: "0.21.2"
2327

2428
defaults:
2529
run:

environment.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ channels:
33
- conda-forge
44
- default
55
dependencies:
6-
- astropy=5.2
6+
- astropy >=5.2,<7
77
- python=3.11 # nail the python version, so conda does not try upgrading / dowgrading
8-
- ctapipe=0.19
8+
- ctapipe
99
- protozfits=2.4
1010
- eventio
1111
- corsikaio

setup.cfg

+5-5
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ package_dir =
3030
python_requires = >=3.9
3131
zip_safe = False
3232
install_requires=
33-
astropy~=5.2
34-
ctapipe >=0.19.0,<0.21.0a0
35-
protozfits~=2.4
36-
numpy>=1.20
37-
scipy<1.14
33+
astropy >=5.2,<7.0.0a0
34+
ctapipe >=0.19.0,<0.22.0a0
35+
protozfits ~=2.4
36+
numpy >=1.20
37+
scipy <1.14
3838

3939
[options.package_data]
4040
* = resources/*

0 commit comments

Comments
 (0)