This repository was archived by the owner on Mar 19, 2025. It is now read-only.
File tree 3 files changed +9
-5
lines changed
3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 94
94
python-version : ' 3.x'
95
95
- name : Install and build
96
96
run : |
97
- python -m pip install --upgrade pip setuptools wheel
98
- python -m pip install -U numpy pyerfa astropy-iers-data PyYAML packaging
97
+ python -m pip install -U pip setuptools wheel
98
+ python -m pip install -U -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy --pre
99
+ python -m pip install -U astropy-iers-data PyYAML packaging
100
+ python -m pip install -U -i https://pypi.anaconda.org/liberfa/simple pyerfa --pre
99
101
python -m pip install -U -i https://pypi.anaconda.org/astropy/simple astropy --pre
100
102
python -m pip install git+https://github.com/ejeschke/ginga.git@main#egg=ginga
101
103
python -m pip install -e .[test]
Original file line number Diff line number Diff line change 1
- 1.6 (unreleased)
2
- ----------------
1
+ 1.5.1 (2024-04-11)
2
+ ------------------
3
+
4
+ - Compatibility with NumPy 2.0. [#238]
3
5
4
6
1.5 (2024-03-21)
5
7
----------------
Original file line number Diff line number Diff line change @@ -231,7 +231,7 @@ def interpret_array(self, data):
231
231
of affected array elements.
232
232
233
233
"""
234
- data = np .asarray (data , dtype = int ) # Ensure int array
234
+ data = np .asarray (data , dtype = np . uint ) # Ensure uint array
235
235
dqs_by_flag = {}
236
236
237
237
def _one_flag (vf ):
You can’t perform that action at this time.
0 commit comments