diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-05-29 02:33:28 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-05-29 02:37:17 +0900 |
commit | cfbd0e6ca7d46ee00144e87b4ebe4c0286b5e703 (patch) | |
tree | 9bb3d7252b272bb4721d644f17cf9ae073eccf72 | |
parent | 4ded1d5644b4d97e5bd7a82b102fb853fa1ceafa (diff) | |
download | sphinx-git-cfbd0e6ca7d46ee00144e87b4ebe4c0286b5e703.tar.gz |
Test with python 3.10
It seems "nightly" python in Travis CI has been changed to 3.10.0a0.
This starts to test with 3.10!
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 9e4b07aac..61f400f63 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,9 +21,12 @@ jobs: env: - TOXENV=du16 - PYTEST_ADDOPTS="--cov ./ --cov-append --cov-config setup.cfg" - - python: 'nightly' + - python: '3.9-dev' env: - TOXENV=py39 + - python: 'nightly' + env: + - TOXENV=py310 - python: '3.6' env: TOXENV=docs - python: '3.6' |