From d3d3ef4c3e55c2884a70c77d55fc22d4853e1fad Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Tue, 31 Mar 2020 18:16:45 -0700 Subject: [PATCH] Update Poetry requirements for testing latest Python version (#898) Poetry errors out if we try to run a different version of Python that what is specified in the config file. We want to run tests against the latest Python version so we can see problems before they happen. This fix updates the config file so Poetry will allow us to test. Nothing is committed after the update. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 8f50d1c8..8c4ff73d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -115,6 +115,8 @@ jobs: # ... and beyond! - name: Python nightly on Linux + before_install: + - sed -i 's/^python = ">=3\.6\.0.*"$/python = "*"/' pyproject.toml python: nightly # Specialty tests