Skip to content

Use pyproject.toml and drop outdated Python support #12

Use pyproject.toml and drop outdated Python support

Use pyproject.toml and drop outdated Python support #12

Workflow file for this run

name: Python
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
construct-version: [">=2.9,<2.10", ">=2.10,<2.11"]
exclude:
- python-version: "3.12"
construct-version: ">=2.9,<2.10"
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 Dependencies
run: |
python -m pip install --upgrade pip
pip install 'construct${{ matrix.construct-version }}'
pip install -r requirements.txt
- name: Run Tests
run: |
python setup.py test