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
A fresh install + import of crowsetta right now gives the following error
ImportError while loading conftest '/Users/davidnicholson/Documents/repos/vocalpy/crowsetta/tests/conftest.py'.tests/__init__.py:1: in <module> from .fixtures import *tests/fixtures/__init__.py:3: in <module> from .bbox import *tests/fixtures/bbox.py:4: in <module> import crowsetta.nox/test-3-10/lib/python3.10/site-packages/crowsetta/__init__.py:21: in <module> from . import formats.nox/test-3-10/lib/python3.10/site-packages/crowsetta/formats/__init__.py:7: in <module> from . import bbox, seq.nox/test-3-10/lib/python3.10/site-packages/crowsetta/formats/bbox/__init__.py:1: in <module> from .audbbox import AudBBox.nox/test-3-10/lib/python3.10/site-packages/crowsetta/formats/bbox/audbbox.py:99: in <module> class AudBBoxSchema(pandera.SchemaModel):E AttributeError: module 'pandera' has no attribute 'SchemaModel'
I think what happened is that SchemaModel got replaced with DataFrameModel in pandera 0.20.0 so the fix is just to rename SchemaModel throughout
Ralph Peterson reported a related issue with installing vocalpy, where crowsetta threw an ImportError, because of a pandas version that didn't work with numpy 2.0. But I think that might actually have been fixed by pandas/pandera releases in the meantime because I'm not getting the error
A fresh install + import of crowsetta right now gives the following error
I think what happened is that SchemaModel got replaced with DataFrameModel in pandera 0.20.0 so the fix is just to rename SchemaModel throughout
Ralph Peterson reported a related issue with installing vocalpy, where crowsetta threw an ImportError, because of a pandas version that didn't work with numpy 2.0. But I think that might actually have been fixed by pandas/pandera releases in the meantime because I'm not getting the error
vocalpy/vocalpy#173
The text was updated successfully, but these errors were encountered: