Merge pull request #441 from Iamrodos/feat/python-version-requirements-clean

chore: Enforce Python 3.8+ requirement and add multi-version CI testing
This commit is contained in:
Jose Diaz-Gonzalez
2025-11-05 20:25:47 -05:00
committed by GitHub

View File

@@ -15,6 +15,9 @@ jobs:
lint:
name: lint
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- name: Checkout repository
@@ -24,7 +27,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
python-version: ${{ matrix.python-version }}
cache: "pip"
- run: pip install -r release-requirements.txt && pip install wheel
- run: flake8 --ignore=E501,E203,W503