-
Notifications
You must be signed in to change notification settings - Fork 23
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
Questions regarding Python versions #25
Comments
Doesn't I don't think we are using I see that Python 3.5 is no longer maintained, so it might be a good idea to bump the required version to 3.6. |
cppimport depends (https://github.com/tbenthompson/cppimport/blob/main/setup.py#L9) on Mako (https://pypi.org/project/Mako/) which only supports python 3.7 and upwards. Python 3.6 has reached End Of Life half a year ago, so I think we could skip that as well. It is unclear how things depend on each-other in turtle. The docs says one thing, and you get tons of warnings without cppimport due to the probes. I think it would be good to iron out what are dependencies, and what should be where. |
Yes, I agree that we can skip Python 3.6 and that we should look into the dependencies. |
In the documentation it is stated that Python >=3.5 is required.
However, to use the full version of
turtleFSI
,fenicstools
andcppimport
is required.cppimport
does not support Python < 3.7.Should the documentation really state that Python >=3.7 is required?
The text was updated successfully, but these errors were encountered: