Skip to content

Upgrade dev deps

Upgrade dev deps #242

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Set up PyPy 3.8
uses: actions/setup-python@v2
with:
python-version: pypy-3.8
- name: Set up PyPy 3.9
uses: actions/setup-python@v2
with:
python-version: pypy-3.9
- name: Set up PyPy 3.10
uses: actions/setup-python@v2
with:
python-version: pypy-3.10
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: '3.12'
- name: Set up Python 3.13
uses: actions/setup-python@v2
with:
python-version: '3.13'
- name: Set up Python 3.14
uses: actions/setup-python@v2
with:
python-version: '3.14'
- name: Install dependencies
run: |
python3.14 -m pip install --upgrade pip uv
uv sync --dev
- name: Run development checks
run: uv run make
- name: Run packaging & run checks on older Pythons
run: uv run tox