Skip to content

chore: update rawpy to 0.24.0 to support Python 3.13 (#158) #389

chore: update rawpy to 0.24.0 to support Python 3.13 (#158)

chore: update rawpy to 0.24.0 to support Python 3.13 (#158) #389

Workflow file for this run

name: validate
on:
workflow_call:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Set up Node.js for pyright
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade poetry
poetry install
make install-pyright
- run: make lint-style
- run: make lint-types
test:
strategy:
matrix:
python: ['3.10', '3.11', '3.12']
# macos-13 is amd64, macos-14 is arm64
# skipping macos-13 here because newer versions of torch aren't being built for amd64 macOS anymore
# the brew builds for amd64 macOS are being validated during brew release
os: [ubuntu-22.04, macos-14, windows-2022]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade poetry
poetry install
- run: make test