ResidentMario / geoplot

High-level geospatial data visualization library for Python.
https://residentmario.github.io/geoplot/index.html
MIT License
1.15k stars 95 forks source link

Tests fail with geopandas 0.11 #283

Closed QuLogic closed 1 year ago

QuLogic commented 1 year ago

It appears that an expected warning is no longer raised:

_______________________ TestClip.test_clip_init_default ________________________

self = <mixin_tests.TestClip testMethod=test_clip_init_default>

    def test_clip_init_default(self):
        clipmixin = self.create_clipmixin()

        # UserWarning because we have a narrow clip
>       with pytest.warns(UserWarning):
E       Failed: DID NOT WARN. No warnings of type (<class 'UserWarning'>,) were emitted. The list of emitted warnings is: [].

tests/mixin_tests.py:593: Failed