From 5bcbdb4f16ddd555c4295ca50b6bcd2d06294b2d Mon Sep 17 00:00:00 2001 From: Boyue Li Date: Fri, 19 Jun 2020 16:20:02 -0400 Subject: [PATCH] Fixed CI configurations for pull request https://github.com/benley/python-glog/pull/11. Removed Python 3.3 build and added new versions. --- .travis.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index a8bad24..a6afdec 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,11 +2,15 @@ language: python python: - "2.7" - - "3.3" - "3.4" - "3.5" - - "3.6-dev" # 3.6 development branch + - "3.6" + - "3.7" + - "3.8" + - "3.8-dev" -install: "pip install ." +install: + - pip install . -script: py.test +script: + - pytest