Skip to content

Bump urllib3 from 2.0.7 to 2.1.0 #314

Bump urllib3 from 2.0.7 to 2.1.0

Bump urllib3 from 2.0.7 to 2.1.0 #314

Workflow file for this run

name: Test dependencies compatibility
on:
pull_request:
branches:
- master
jobs:
test:
environment:
name: Testing dependencies
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip
uses: actions/cache@v2.1.7
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r requirements.txt