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
Unless I'm completely mistaken the Python version requirements for scandir and typing are the wrong way around in the Pipfile. Both modules/functions are part of Python >= 3.5, but the Pipfile requires them for Python > 3.5 (i.e. all versions that already include that functionality, except 3.5 itself), instead of Python < 3.5 (i.e. all versions that need this functionality in form of an extra module)
Unless I'm completely mistaken the Python version requirements for
scandir
andtyping
are the wrong way around in thePipfile
. Both modules/functions are part of Python >= 3.5, but the Pipfile requires them for Python > 3.5 (i.e. all versions that already include that functionality, except 3.5 itself), instead of Python < 3.5 (i.e. all versions that need this functionality in form of an extra module)guake/Pipfile
Line 30 in dcbf64c
guake/Pipfile
Line 42 in dcbf64c
Both should be
"python_version < '3.5'"
This even was the case before this commit: a38b47c#diff-230078d672f10d17463a8a6265cad825b790885898256a3365be90685caac58d
The text was updated successfully, but these errors were encountered: