Skip to content

Bump urllib3 from 2.4.0 to 2.5.0 in the pip group across 1 directory #71

Bump urllib3 from 2.4.0 to 2.5.0 in the pip group across 1 directory

Bump urllib3 from 2.4.0 to 2.5.0 in the pip group across 1 directory #71

Workflow file for this run

name: test-package
on:
pull_request:
paths:
- "codecarbon/**"
- "pyproject.toml"
- "requirements.txt"
jobs:
python-test:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.9", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install hatch==1.13.0 hatchling==1.25.0
- name: Test package
run: |
hatch run +py=${{ matrix.python-version }} test:package