MLResearchAtOSRAM / cause2e

The cause2e package provides tools for performing an end-to-end causal analysis of your data. Developed by Daniel Grünbaum (@dg46).
https://gitlab.com/causal-inference/working-group/-/wikis/home
MIT License
56 stars 4 forks source link

Continuous integration failing #33

Closed dg46 closed 1 year ago

dg46 commented 1 year ago

Some tests do not pass, likely related to pandas updating to 2.0.0 (breaking changes). Warning says that we are passing set as indexer to dataframe, which is no longer supported: https://github.com/pandas-dev/pandas/issues/42825 Try fixing it by requiring older pandas version in requirements.txt. If this does not work, manually either convert the sets to lists in our code or patch Loc as suggested here: https://github.com/pandas-dev/pandas/issues/42825#issuecomment-1334633012

dg46 commented 1 year ago

solved by requiring pandas<2.0