Skip to content

Add python 3.12 support #392

Add python 3.12 support

Add python 3.12 support #392

Workflow file for this run

name: Python tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
linux-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.12']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install uv
uv pip install --system pytest
uv pip install --system moviepy
sudo apt-get install libgmp-dev
uv pip install --system mo-gymnasium[all]
uv pip install --system -e .[all]
- name: Full Python tests
run: |
pytest tests/test_algos.py
pytest tests/test_pruning.py