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.
This commit is contained in:
Jonathan Wren 2020-03-31 18:16:45 -07:00
parent c49e028dea
commit d3d3ef4c3e

View file

@ -115,6 +115,8 @@ jobs:
# ... and beyond! # ... and beyond!
- name: Python nightly on Linux - name: Python nightly on Linux
before_install:
- sed -i 's/^python = ">=3\.6\.0.*"$/python = "*"/' pyproject.toml
python: nightly python: nightly
# Specialty tests # Specialty tests