Skip to content

Commit 71592a6

Browse files
authored
Merge pull request #68 from cta-observatory/update_python
Update python and ctapipe version
2 parents 6b97ec7 + 25d3c56 commit 71592a6

File tree

4 files changed

+11
-13
lines changed

4 files changed

+11
-13
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
python-version: ["3.8", "3.9", "3.10"]
22-
ctapipe-version: ["v0.19.0",]
21+
python-version: ["3.8", "3.9", "3.10", "3.11"]
22+
ctapipe-version: ["v0.19.2",]
2323

2424
defaults:
2525
run:

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## *ctapipe* MAGIC event source
22

3-
EventSource plugin for *ctapipe*, needed to read the calibrated data of the MAGIC telescope system. It requires the [*ctapipe*](https://github.com/cta-observatory/ctapipe) (v0.19.0) and [*uproot*](https://github.com/scikit-hep/uproot4) (>=5) packages to run.
3+
EventSource plugin for *ctapipe*, needed to read the calibrated data of the MAGIC telescope system. It requires [*ctapipe*](https://github.com/cta-observatory/ctapipe) (v0.19.x) and [*uproot*](https://github.com/scikit-hep/uproot5) (>=5) packages to run.
44

55
#### Installation
66

@@ -122,4 +122,5 @@ Some general information about the simulated data, useful for IRF calculation, a
122122
- v0.5.0: release compatible with ctapipe 0.17. Also, the equivalent focal length is set to the
123123
correct value used in MAGIC simulations (i.e. 16.97 meters)
124124
- v0.5.1: release compatible with ctapipe 0.19
125-
- v0.5.2: introduce capbility of reading data taken with the Hardware Stereo Trigger (HaST) between MAGIC and LST-1. Also, fixed bug when getting the time difference between events for mono data
125+
- v0.5.2: introduce capability of reading data taken with the Hardware Stereo Trigger (HaST) between MAGIC and LST-1. Also, fixed bug when getting the time difference between events for mono data
126+
- v0.5.3: support for python 3.11

environment.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,19 @@ channels:
44
- default
55
dependencies:
66
- astropy=5
7-
- python=3.10
7+
- python=3.11
88
- ctapipe=0.19
99
- eventio
1010
- corsikaio
1111
- zeromq
1212
- ipython
13-
- numba
14-
- numpy=1.22
13+
- numba>=0.56
14+
- numpy>=1.22
1515
- numpydoc
1616
- pytest
1717
- pyyaml
1818
- scipy
1919
- zlib
2020
- pip
2121
- h5py
22-
- pip:
23-
- pytest_runner
24-
- uproot~=5.0
25-
22+
- uproot=5

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ python_requires = >=3.8
2828
zip_safe = False
2929
install_requires=
3030
astropy~=5.0
31-
ctapipe>=0.17.0,<=0.19
32-
numpy>=1.20
31+
ctapipe~=0.19.0
32+
numpy>=1.22
3333
uproot~=5.0
3434

3535
[options.package_data]

0 commit comments

Comments
 (0)