Skip to content

Add Python 3.13 and 3.14 support #46

Add Python 3.13 and 3.14 support

Add Python 3.13 and 3.14 support #46

Workflow file for this run

name: Validate
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint:
name: "Lint"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.14"
- name: Install Python dependencies
run: |
python3 -m pip install -r requirements-dev.txt
- name: Install Package
run: |
python3 -m pip install -e .
- name: Lint sources
run: |
make PYTHON=python3 lint