feat: Support urllib3 <= 2.1 for py 3.11 #541
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: check-size | |
on: pull_request | |
jobs: | |
check-size: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.7 | |
- name: Install Crossbuild Deps | |
run: | | |
sudo apt-get update --allow-releaseinfo-change --fix-missing | |
sudo apt install -y qemu-user-static binfmt-support | |
- name: Install dependencies | |
run: | | |
pip install virtualenv | |
virtualenv venv | |
source venv/bin/activate | |
pip install .[dev] | |
- name: Build Layers | |
run: ./scripts/build_layers.sh | |
- name: Check Size | |
run: ./scripts/check_layer_size.sh |