-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Add Python 3.7 to Travis-CI tests #82
Conversation
We'll keep this open for now. Currently we are using a workaround, because Travis-CI does not support Python 3.7 (travis-ci/travis-ci#9815 (comment)). Also some dependency is pulling in |
mdsynthesis is pulling in that dependency. An update to the new datreant version will fix this. |
give python 3.7 another month until all packages are updated. |
Currently blocked by #99. |
Now that PR #110 is merged, we can actually also merge this. As a note, with Python 3.7 we get some deprecation warnings during the /home/travis/virtualenv/python3.7.1/lib/python3.7/site-packages/pathlib2/__init__.py:15: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
from collections import Sequence
/home/travis/virtualenv/python3.7.1/lib/python3.7/site-packages/matplotlib/__init__.py:107: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
from collections import MutableMapping
/home/travis/virtualenv/python3.7.1/lib/python3.7/site-packages/matplotlib/rcsetup.py:20: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
from collections import Iterable, Mapping
/home/travis/virtualenv/python3.7.1/lib/python3.7/site-packages/matplotlib/rcsetup.py:20: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
from collections import Iterable, Mapping
/home/travis/virtualenv/python3.7.1/lib/python3.7/site-packages/matplotlib/colors.py:53: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
from collections import Sized
/home/travis/build/bio-phys/MDBenchmark/mdbenchmark/mdengines/utils.py:32: DeprecationWarning: invalid escape sequence \.
"gromacs": [".*/bench\.job", ".*\.tpr", ".*\.mdp"],
/home/travis/build/bio-phys/MDBenchmark/mdbenchmark/mdengines/utils.py:32: DeprecationWarning: invalid escape sequence \.
"gromacs": [".*/bench\.job", ".*\.tpr", ".*\.mdp"],
/home/travis/build/bio-phys/MDBenchmark/mdbenchmark/mdengines/utils.py:32: DeprecationWarning: invalid escape sequence \.
"gromacs": [".*/bench\.job", ".*\.tpr", ".*\.mdp"],
/home/travis/build/bio-phys/MDBenchmark/mdbenchmark/mdengines/utils.py:33: DeprecationWarning: invalid escape sequence \.
"namd": [".*/bench\.job", ".*\.namd", ".*\.psf", ".*\.pdb"],
/home/travis/build/bio-phys/MDBenchmark/mdbenchmark/mdengines/utils.py:33: DeprecationWarning: invalid escape sequence \.
"namd": [".*/bench\.job", ".*\.namd", ".*\.psf", ".*\.pdb"],
/home/travis/build/bio-phys/MDBenchmark/mdbenchmark/mdengines/utils.py:33: DeprecationWarning: invalid escape sequence \.
"namd": [".*/bench\.job", ".*\.namd", ".*\.psf", ".*\.pdb"],
/home/travis/build/bio-phys/MDBenchmark/mdbenchmark/mdengines/utils.py:33: DeprecationWarning: invalid escape sequence \.
"namd": [".*/bench\.job", ".*\.namd", ".*\.psf", ".*\.pdb"],
/home/travis/virtualenv/python3.7.1/lib/python3.7/site-packages/matplotlib/cbook/__init__.py:2349: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
if isinstance(obj, collections.Iterator):
/home/travis/virtualenv/python3.7.1/lib/python3.7/site-packages/matplotlib/cbook/__init__.py:2366: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
return list(data) if isinstance(data, collections.MappingView) else data |
No description provided.