diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-01-08 13:14:20 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-01-08 13:14:20 +0900 |
commit | 227df4ec7a4ef20d7656a98298d890eb7dc2b00b (patch) | |
tree | fcbd97b4f4bae2bfb67845a57769e117d2573f46 | |
parent | d09c28deee68f6fdd4b2a87a917b9bcd9b7e91cb (diff) | |
download | sphinx-git-227df4ec7a4ef20d7656a98298d890eb7dc2b00b.tar.gz |
Stop testing with nightly python
At present, latest typted_ast does not support python-3.9a1 or later.
As a result, nightly python in Travis CI gets errored in nearly running.
This stops to use nightly python for testing temporarily.
refs: https://github.com/python/typed_ast/issues/129
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 008f4e442..046efc35a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ matrix: env: - TOXENV=du15 - PYTEST_ADDOPTS="--cov ./ --cov-append --cov-config setup.cfg" - - python: 'nightly' + - python: '3.8' env: - TOXENV=du16 - python: '3.6' |