I had a problem running search_variants_by_coordinates from civicpy. After a bit of research I could figure out what the problem is:
Because of some implementation changes in pandas version >=2.0 a index series can no longer be intersected using the & operator, but a set can. I found the valuable hint to this problem here https://linuxhint.com/panda-series-intersection/.
I hope you find this useful and you would merge this pull request.
I had a problem running
search_variants_by_coordinates
from civicpy. After a bit of research I could figure out what the problem is: Because of some implementation changes in pandas version >=2.0 a index series can no longer be intersected using the&
operator, but aset
can. I found the valuable hint to this problem here https://linuxhint.com/panda-series-intersection/.I hope you find this useful and you would merge this pull request.