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
When importing the current build of the Frictionless Py library I'm getting an import error loading Option from typer. Typer was not referenced in my project directly, and I see that version 0.12.0 was loaded. Locking typer at 0.11.1 in my project resolves the problem. I don't see anything in the Release notes on their side that would raise a flag.
Here is an excerpt of my stack trace:
File "/srv/dribdat/meta/dribdat/boxout/datapackage.py", line 7, in <module>
from frictionless import Package
File "/home/oleg/.cache/pypoetry/virtualenvs/dribdat-7P2NJE9z-py3.8/lib/python3.8/site-packages/frictionless/__init__.py", line 19, in <module>
from .program import program
File "/home/oleg/.cache/pypoetry/virtualenvs/dribdat-7P2NJE9z-py3.8/lib/python3.8/site-packages/frictionless/program/__init__.py", line 1, in <module>
from .api import program_api
File "/home/oleg/.cache/pypoetry/virtualenvs/dribdat-7P2NJE9z-py3.8/lib/python3.8/site-packages/frictionless/program/api.py", line 1, in <module>
from typer import Option as Opt
ImportError: cannot import name 'Option' from 'typer' (unknown location)
The text was updated successfully, but these errors were encountered:
When importing the current build of the Frictionless Py library I'm getting an import error loading
Option
fromtyper
. Typer was not referenced in my project directly, and I see that version 0.12.0 was loaded. Locking typer at 0.11.1 in my project resolves the problem. I don't see anything in the Release notes on their side that would raise a flag.Here is an excerpt of my stack trace:
The text was updated successfully, but these errors were encountered: