Skip to content

Update python version to address old dependencies #308

Update python version to address old dependencies

Update python version to address old dependencies #308

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Install Python 3
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements.txt
- name: Run tests with unittest
run: python -m unittest test/test.py