Skip to content

Update README to reflect that python3 is required #2

Update README to reflect that python3 is required

Update README to reflect that python3 is required #2

Workflow file for this run

---
name: testing
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tox:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.10", "3.11", "3.12"]
steps:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install tox and any other packages
run: |
pip3 install tox
- uses: actions/checkout@v3
- name: Run tox
# Run tox using the version of Python in `PATH`
run: tox