Skip to content

Updated docs to show Python 3.9 as minimal version #3

Updated docs to show Python 3.9 as minimal version

Updated docs to show Python 3.9 as minimal version #3

Workflow file for this run

name: Run tests
on: [push, pull_request]
permissions: {}
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install libdiscid0
pip install build pytest
- name: Test
run: pytest --verbose
- name: Build
run: python -m build .
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: dist-${{ matrix.python-version }}
path: dist/