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
Traceback (most recent call last):
File "examples/lifecycle_hooks.py", line 4, in <module>
from gooey import Events, Gooey, GooeyParser
ImportError: cannot import name 'Events' from 'gooey' (/.../python3.8/site-packages/gooey/__init__.py)
Expected behavior
Example runs without error
Desktop (please complete the following information):
OS: MacOS 12.0.1
The text was updated successfully, but these errors were encountered:
pip install gooey==1.2.0a0
Collecting gooey==1.2.0a0
Using cached Gooey-1.2.0a0-py2.py3-none-any.whl (766 kB)
Requirement already satisfied: Pillow>=4.3.0 in ./env/lib/python3.8/site-packages (from gooey==1.2.0a0) (9.2.0)
ERROR: Could not find a version that satisfies the requirement dataclasses>=0.8 (from gooey) (from versions: 0.1, 0.2, 0.3, 0.4, 0.5, 0.6)
ERROR: No matching distribution found for dataclasses>=0.8
python3.10 examples/lifecycle_hooks.py
...
Traceback (most recent call last):
File "/.../GooeyExamples/examples/lifecycle_hooks.py", line 4, in <module>
from gooey import Events, Gooey, GooeyParser
ImportError: cannot import name 'Events' from 'gooey' (/.../GooeyExamples/env/lib/python3.10/site-packages/gooey/__init__.py)
Attempting to upgrade to gooey 1.2:
pip install gooey==1.2.0a0
...
ERROR: Ignored the following versions that require a different python version: 0.7 Requires-Python >=3.6, <3.7; 0.8 Requires-Python >=3.6, <3.7
ERROR: Could not find a version that satisfies the requirement dataclasses>=0.8 (from gooey) (from versions: 0.1, 0.2, 0.3, 0.4, 0.5, 0.6)
ERROR: No matching distribution found for dataclasses>=0.8
Describe the bug
running
python3.8 examples/lifecycle_hooks.py
generates an exception: `ImportError: cannot import name 'Events' from 'gooey'.To Reproduce
Steps to reproduce the behavior:
git clone https://github.com/chriskiehl/GooeyExamples.git
cd GooeyExamples
pip install -r requirements.txt
python3.8 examples/lifecycle_hooks.py
Expected behavior
Example runs without error
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: