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
The result is that since today, the 'six' library is missing and Gigalixir action fails on trying to login:
Logging in to gigalixir
/opt/hostedtoolcache/Python/3.8.1/x64/bin/gigalixir login -e *** -y -p ***
Traceback (most recent call last):
File "/opt/hostedtoolcache/Python/3.8.1/x64/bin/gigalixir", line 5, in <module>
from gigalixir import cli
File "/opt/hostedtoolcache/Python/3.8.1/x64/lib/python3.8/site-packages/gigalixir/__init__.py", line 8, in <module>
from . import observer as gigalixir_observer
File "/opt/hostedtoolcache/Python/3.8.1/x64/lib/python3.8/site-packages/gigalixir/observer.py", line 13, in <module>
from . import app as gigalixir_app
File "/opt/hostedtoolcache/Python/3.8.1/x64/lib/python3.8/site-packages/gigalixir/app.py", line 13, in <module>
from . import presenter
File "/opt/hostedtoolcache/Python/3.8.1/x64/lib/python3.8/site-packages/gigalixir/presenter.py", line 6, in <module>
from six import u as unicode
ModuleNotFoundError: No module named 'six'
Error: The process '/opt/hostedtoolcache/Python/3.8.1/x64/bin/gigalixir' failed with exit code 1
I have fixed the issue for myself, by installing the missing library in my yaml file:
I don't know anything about Python dependency management but I suspect the best way is to lock the dependency versions, if possible, so that they don't break?
Hey there,
2 days ago, when I did the last release of the app, [email protected] did output the following libraries that installed:
Today, it installed:
The result is that since today, the 'six' library is missing and Gigalixir action fails on trying to login:
I have fixed the issue for myself, by installing the missing library in my yaml file:
but it probably is because rollbar updated and you probably need to explicitly depend on the 'six' library, or something like that :)
All the best and Happy Friday!
The text was updated successfully, but these errors were encountered: