-
Hi, I was wondering about the reasoning behind the In projects where I use plantcv I'm starting to notice it causing difficulties in resolving dependencies, e.g. I also ran into this issue: #1337 and it seems to be because of the numpy limitation. The limitation still seems to be there in the v4 branch? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
At some point we ran into an issue where allowing a newer version of NumPy started failing our unit tests. I am not sure what the exact change was/is but almost certainly it is related to a change in NumPy's API or how strict it handles certain data input types. It could have definitely been related to We won't leave NumPy restricted, but will need to do an update where we allow a newer version of NumPy and fix any issues. Likewise with Pandas v2. |
Beta Was this translation helpful? Give feedback.
-
Cool thanks for the answer, and great to see the 4.0 release. Is any migration being worked on? Wondering if I could maybe help out if I had some time. |
Beta Was this translation helpful? Give feedback.
At some point we ran into an issue where allowing a newer version of NumPy started failing our unit tests. I am not sure what the exact change was/is but almost certainly it is related to a change in NumPy's API or how strict it handles certain data input types. It could have definitely been related to
plotnine
, which we removed in favor of usingaltair
in v4.We won't leave NumPy restricted, but will need to do an update where we allow a newer version of NumPy and fix any issues. Likewise with Pandas v2.