Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
focus-validator is failing with the following message:
Traceback (most recent call last): File "/home/epatro/.cache/pypoetry/virtualenvs/focus-validator-fhaq7c8y-py3.11/bin/focus-validator", line 3, in <module> from focus_validator.main import main File "/home/epatro/github/focus_validator/focus_validator/__init__.py", line 2, in <module> from focus_validator.rules.checks import * # noqa ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/epatro/github/focus_validator/focus_validator/rules/checks.py", line 8, in <module> import pandera as pa File "/home/epatro/.cache/pypoetry/virtualenvs/focus-validator-fhaq7c8y-py3.11/lib/python3.11/site-packages/pandera/__init__.py", line 4, in <module> import pandera.backends File "/home/epatro/.cache/pypoetry/virtualenvs/focus-validator-fhaq7c8y-py3.11/lib/python3.11/site-packages/pandera/backends/__init__.py", line 6, in <module> import pandera.backends.pandas File "/home/epatro/.cache/pypoetry/virtualenvs/focus-validator-fhaq7c8y-py3.11/lib/python3.11/site-packages/pandera/backends/pandas/__init__.py", line 13, in <module> from pandera.backends.pandas.checks import PandasCheckBackend File "/home/epatro/.cache/pypoetry/virtualenvs/focus-validator-fhaq7c8y-py3.11/lib/python3.11/site-packages/pandera/backends/pandas/checks.py", line 7, in <module> from multimethod import DispatchError, overload ImportError: cannot import name 'overload' from 'multimethod' (/home/epatro/.cache/pypoetry/virtualenvs/focus-validator-fhaq7c8y-py3.11/lib/python3.11/site-packages/multimethod/__init__.py)
so this PR is updating pandera to fix this issue.