From 5e0000609f9be6efafea1b96f610988eb18d6d89 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 10 Feb 2020 21:52:23 -0800 Subject: [PATCH] Try using Travis Pythons that are not -dev --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index ca4a8f3..c75c1a2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,11 +4,10 @@ dist: bionic # 3.6 is listed first so it gets used for the later build stages python: - "3.6" - - "3.7-dev" - - "3.8-dev" + - "3.7" + - "3.8" script: - - python3 -m pip install -U pip - pip install -U pip wheel - pip install .[test] # Only run the numpy/pandas tests on Python 3.7: