Skip to content

fix: install types-deprecated for 3.11 compatibility #262

fix: install types-deprecated for 3.11 compatibility

fix: install types-deprecated for 3.11 compatibility #262

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
env:
FORCE_COLOR: 1
PIP_ROOT_USER_ACTION: ignore
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
include:
- os: macos-latest # macos test
python-version: "3.11"
- os: windows-latest # windows test
python-version: "3.11"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install nox[uv]
- name: test the repository
run: nox