Skip to content

Drop support for Python <= 3.8 #5

Drop support for Python <= 3.8

Drop support for Python <= 3.8 #5

Workflow file for this run

name: Python test
on:
push:
paths-ignore:
- '*.md'
pull_request:
paths-ignore:
- '*.md'
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install packaging tools
run: pip install setuptools wheel twine
# - name: Install PyTest
# run: pip install pytest
# - name: Install Pylint
# run: pip install pylint
- name: Install package
run: pip install .
# - name: Test
# run: pytest test/main.py
# - name: Lint
# run: pylint src test