Skip to content

Commit

Permalink
ci: Use Py38 for docs building
Browse files Browse the repository at this point in the history
Docs use __version__, which we only have in Python 3.8.
  • Loading branch information
riddell-stan committed Jul 7, 2020
1 parent 9f756d9 commit ecd0dcd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sphinx:
configuration: doc/conf.py

python:
version: 3.7
version: 3.8
install:
- method: pip
path: .
Expand Down
7 changes: 5 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: ~> 1.0
language: python
python: 3.7
python: 3.8
os: linux
dist: bionic
jobs:
Expand All @@ -12,5 +12,8 @@ before_install:
install:
- pip install "poetry<2,>=1.0" tox
script:
- tox
- |
if [[ $TRAVIS_PYTHON_VERSION != "3.7" ]]; then
tox
fi
- poetry install -v && poetry run pytest -s -v tests

0 comments on commit ecd0dcd

Please sign in to comment.