summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJordan Cook <JWCook@users.noreply.github.com>2021-08-07 19:32:42 -0500
committerJordan Cook <jordan.cook@pioneer.com>2021-08-07 20:29:01 -0500
commit5455bddcaeec4a274e15cfa194b382aa6793d060 (patch)
tree774ed2914cdcf090b0cfb269a35a44f5b3fb87b7 /.github/workflows
parent7b80eb209365cdd8b7cf566d4d56b1cf40d1344f (diff)
parent308cf7216db87a2f4f8ce9ad95a7dbae31bffe57 (diff)
downloadrequests-cache-5455bddcaeec4a274e15cfa194b382aa6793d060.tar.gz
Re-enable pre-deploy tests for all supported requests versions, and pin optional dependency versions compatible with requests<2.22
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/deploy.yml6
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index b5c4934..accf1da 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -26,8 +26,8 @@ jobs:
runs-on: ubuntu-18.04
strategy:
matrix:
- python-version: [3.6]
- requests-version: [latest] #[2.17, 2.18, 2.19, 2.20.1, 2.21, 2.22, 2.23, 2.24, 2.25, latest]
+ python-version: [3.7]
+ requests-version: [2.17, 2.18, 2.19, 2.20.1, 2.21, 2.22, 2.23, 2.24, 2.25, latest]
fail-fast: false
services:
nginx:
@@ -65,8 +65,6 @@ jobs:
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: |
- # botocore has a urllib3 version conflict with older versions of requests
- # poetry add boto3@1.15 botocore@1.18 --optional --lock
poetry add requests@${{ matrix.requests-version }} --lock
poetry install -v -E all