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 code checks for Python 3.5, but that version actually does not work, as the f-strings are used, which require Python 3.6. This effectively drops support for Ubuntu 16.04 (which has reached "end of standard support").
There are only 3 places where f-strings are used, which could be replaced, otherwise the version check should probably test for Python 3.6.
The text was updated successfully, but these errors were encountered:
The code checks for Python 3.5, but that version actually does not work, as the f-strings are used, which require Python 3.6. This effectively drops support for Ubuntu 16.04 (which has reached "end of standard support").
There are only 3 places where f-strings are used, which could be replaced, otherwise the version check should probably test for Python 3.6.
The text was updated successfully, but these errors were encountered: