You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, if we run pytest with pandas > 1.1.5 three test cases fail. After some investigation, I believe they fail because of this update on their side. This change modifies the behavior of the corr() function which we use here:
Since the pandas update changes our tau matrix, which in turn changes the fitting procedure, we end up generating a different tree in the end. Since the test cases expect the tree generated by the old pandas, they fail the current test.
In summary, after we correct the test cases that fail, I believe there will be no problems in updating pandas for all our libraries.
For my other project, I must use pandas 0.25.4. just wondering would it cause any issues in the correlation/covariance/tau_mat matrix produced by the newest copulas package?
Copulas currently does not support
pandas>=1.1.5
, which does not include the newest versions.We should investigate why blocks us from using the latest versions and adapt the code if necessary.
The text was updated successfully, but these errors were encountered: