We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
FRETBursts 0.7+ drops support for python 2.7. It is time to remove some old cruft!
This is an easy issue that can help first-time contributors to get the hands dirty with FRETBursts codebase.
FRETBursts uses the future package to assure python 2 compatibility:
future
https://python-future.org/compatible_idioms.html
Imports "from future" can be removed now. In particular, these lines be safely removed
from __future__ import ...
from builtins import ...
past
builtins
Also the future package should be removed from the dependencies (see setup.py).
If you use FRETBursts this is a good issue to start contributing!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Overview
FRETBursts 0.7+ drops support for python 2.7. It is time to remove some old cruft!
This is an easy issue that can help first-time contributors to get the hands dirty with FRETBursts codebase.
Technical description
FRETBursts uses the
future
package to assure python 2 compatibility:https://python-future.org/compatible_idioms.html
Imports "from future" can be removed now. In particular, these lines be safely removed
from __future__ import ...
from builtins import ...
past
,future
andbuiltins
.Also the
future
package should be removed from the dependencies (see setup.py).If you use FRETBursts this is a good issue to start contributing!
The text was updated successfully, but these errors were encountered: