Closed ejeschke closed 8 months ago
Fortunately, I think these are all internal, and not exposed in an API.
Good news. All of the uses of copy=False
within ginga
are with the numpy
call astype()
. According to the v2.0 doc the semantics in v2.0 are compatible with the semantics in v1.x.
So I don't think ginga
core will need to change anything. External plugins in other packages could be affected, of course, depending on how they use numpy
calls.
Closing. Will reopen if it proves to be an issue later.
Per the discussion in this astropy issue,
ginga
also has a number of uses ofcopy=False
innumpy
operations that will need to be changed toNone
to achieve the same semantics innumpy
v2.x.