Skip to content

Commit

Permalink
CI: Run tests with Python 3.8 at Travis CI
Browse files Browse the repository at this point in the history
Add Python 3.8 to `devscripts/setup`.
  • Loading branch information
phdru committed Nov 1, 2019
1 parent 596704c commit 1de29a7
Show file tree
Hide file tree
Showing 4 changed files with 134 additions and 4 deletions.
13 changes: 11 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ matrix:
- python: "3.7"
dist: xenial
env: TESTS=py37-mysql
- python: "3.8"
dist: xenial
env: TESTS=py38-mysql
- python: "2.7"
env: TESTS=py27-postgres
- python: "3.4"
Expand All @@ -43,6 +46,9 @@ matrix:
- python: "3.7"
dist: xenial
env: TESTS=py37-postgres
- python: "3.8"
dist: xenial
env: TESTS=py38-postgres
- python: "2.7"
env: TESTS=py27-sqlite
- python: "3.4"
Expand All @@ -54,11 +60,14 @@ matrix:
- python: "3.7"
dist: xenial
env: TESTS=py37-sqlite
- python: "3.8"
dist: xenial
env: TESTS=py38-sqlite
- python: "2.7"
env: TESTS=py27-flake8
- python: "3.7"
- python: "3.8"
dist: xenial
env: TESTS=py37-flake8
env: TESTS=py38-flake8
- python: "2.7"
env: TESTS=py27-firebird
- python: "3.6"
Expand Down
2 changes: 1 addition & 1 deletion devscripts/setup
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
umask 022 # -rwxr-xr-x
cd "`dirname \"$0\"`"/.. &&

for py_ver in 2.7 3.4 3.5 3.6 3.7; do
for py_ver in 2.7 3.4 3.5 3.6 3.7 3.8; do
python$py_ver -m pip install --install-option=-O2 --upgrade .
done &&

Expand Down
5 changes: 5 additions & 0 deletions docs/News.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ Bug fixes

* Fixed a bug working with microseconds in Time columns.

CI
--

* Run tests with Python 3.8 at Travis CI.

SQLObject 3.7.3
===============

Expand Down

0 comments on commit 1de29a7

Please sign in to comment.