Skip to content

Add python==3.13 support #365

Add python==3.13 support

Add python==3.13 support #365

Workflow file for this run

---
name: Examples
on:
push:
branches:
- main
- renovate/**
pull_request:
workflow_dispatch:
concurrency:
cancel-in-progress: true
group: >-
${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
jobs:
codeblocks:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up python
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5
with:
python-version: "3.13"
cache: pip
cache-dependency-path: pyproject.toml
- name: Cache pooch
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
with:
path: ~/.cache/sleplet
key: readme-${{ hashFiles('pyproject.toml') }}
- name: Install dependencies
run: python -m pip install -e '.[readme]'
- name: Run examples in the README
run: python -m pytest --codeblocks .github README.md documentation
examples:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up python
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5
with:
python-version: "3.13"
cache: pip
cache-dependency-path: pyproject.toml
- name: Cache pooch
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
with:
path: ~/.cache/sleplet
key: examples-${{ hashFiles('pyproject.toml') }}
- name: Install dependencies
run: python -m pip install -e .[docs]
- name: Run examples in the examples folder
run: >-
find examples -name "*.py" -exec sh -c 'for f; do printf "\n$f\n";
python "$f" || exit 1; done' sh {} +