Skip to content

feat: Add support for python 3.12 #297

feat: Add support for python 3.12

feat: Add support for python 3.12 #297

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python python3.10
uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python-version }}"
- name: Set up rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Set up rustfmt
run: rustup component add rustfmt
# Maturin requires a venv to be activated, that's why we have to create one here
- name: Create virtualenv
run: |
python -m venv .venv
source .venv/bin/activate
make install-test-requirements
- name: Lint
run: |
source .venv/bin/activate
make lint
- name: Test
run: |
source .venv/bin/activate
make test-ci
macos:
runs-on: macos-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: build (fast)
uses: messense/maturin-action@v1
with:
command: build
args: "-o dist --universal2 --interpreter python${{ matrix.python-version }}"