Relax dependency minimum versions

Specifying a floor, but not a ceiling, for core dependencies should help
prevent dependency resolution conflicts. Dependencies that affect
functional test output are pinned more tightly.
This commit is contained in:
Justin Mayer 2021-03-23 08:06:58 +01:00
commit 2b08497c32
4 changed files with 18 additions and 17 deletions

View file

@ -86,7 +86,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.6
python-version: "3.x"
- name: Set pip cache (Linux)
uses: actions/cache@v1
if: startsWith(runner.os, 'Linux')
@ -110,7 +110,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.6
python-version: "3.x"
- name: Set pip cache (Linux)
uses: actions/cache@v1
if: startsWith(runner.os, 'Linux')
@ -136,7 +136,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: "3.x"
- name: Check release
id: check_release
run: |