Closed esabol closed 4 years ago
I noticed that under "View config" on Travis CI, it says:
root: deprecated key sudo (The key `sudo` has no effect anymore.)
I googled that and found this blog entry:
All the Python repos subsequently removed sudo: required from their .travis.yml files. For example: https://github.com/python/mypy/issues/6675
sudo: required
.travis.yml
We might as well do the same!
By the way, it also says:
root: key matrix is an alias for jobs, using jobs
Might as well change matrix: to jobs: in .travis.yml then?
matrix:
jobs:
Update: I made that change as well.
I noticed that under "View config" on Travis CI, it says:
I googled that and found this blog entry:
All the Python repos subsequently removed
sudo: required
from their.travis.yml
files. For example: https://github.com/python/mypy/issues/6675We might as well do the same!