Skip to content

fix: allow to use lxml < 6.1.0 so it works with libxml2 2.15 #241

fix: allow to use lxml < 6.1.0 so it works with libxml2 2.15

fix: allow to use lxml < 6.1.0 so it works with libxml2 2.15 #241

Workflow file for this run

name: build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
python-version: [ '3.10', '3.11', '3.12', '3.13' ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install build environment
run: |
python -m pip install --upgrade pip
python -m pip install uv
- name: Build and test with uv.
run: |
uv run ruff check
uv build