-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
F-strings are only compatible with Python ≥3.6, not 3.5 #168
Comments
The documentation states that the reporting features are experimental in ixmp 0.2, and only support Python 3. |
The issue is that test suite fails on python 3.5. Is it expected? |
Just a thought: we should check out dependencies and see what is the highest minimum Python version. |
Yeah, recently I had hard time figuring out that one of the dependencies was not working because of not having python 3.7. So pip had it installed, just |
For reference, NEP 29 from numpy (one of our dependencies) has only Python 3.6+ as of yesterday. |
As of #263, we require pandas 1.0 which in turn requires Python 3.6.1 (see also pandas-dev/pandas#29212). |
There is a line
result.append(f"{indent}'{arg}' (above)")
inixmp/reporting/describe.py
which makesixmp
compatible with python 3.6+ only, but currently we did not drop support of neither python 2 or python 3.5.The text was updated successfully, but these errors were encountered: