Skip to content

Add setuptools because of Python 3.12 #37

Add setuptools because of Python 3.12

Add setuptools because of Python 3.12 #37

Workflow file for this run

name: Python
on: push
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install --requirement requirements.txt
- name: Check lint and test
run: make check
- name: Check publish
run: make publish