Skip to content

python 3.13 support only for ubuntu | macos build till 3.12 #4

python 3.13 support only for ubuntu | macos build till 3.12

python 3.13 support only for ubuntu | macos build till 3.12 #4

Workflow file for this run

name: Ubuntu Build
on:
push:
branches:
- main
- spiros-dev
pull_request:
branches:
- main
- spiros-dev
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup python version ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements.txt
python3 -m pip install -e .