Skip to content

pyproject.toml: bump version to 12.0.2 #240

pyproject.toml: bump version to 12.0.2

pyproject.toml: bump version to 12.0.2 #240

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: '3.13'
- name: Install dependencies (Ubuntu)
if: ${{ matrix.os == 'ubuntu-latest' }}
run: sudo apt-get -y install tox tree
- name: Install dependencies (macOS)
if: ${{ matrix.os == 'macos-latest' }}
run: |
brew install tox tree
# Prepend optional brew binary directories to PATH
echo "$(brew --prefix)/opt/python/libexec/bin" >> $GITHUB_PATH
- name: Build
run: tox