Skip to content

Commit 794a86a

Browse files
committed
Build docs and test Python 3.12 and 3.13
1 parent b8c3c59 commit 794a86a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Diff for: .github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ["3.8", "3.9", "3.10", "3.11"]
14+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev"]
1515

1616
steps:
1717
- name: Check out the repository

Diff for: checks.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
#!/bin/bash
22

3+
set -o errexit
4+
35
pre-commit run --all-files
4-
mypy src tests
6+
mypy --python-version=3.12 src tests
7+
sphinx-build -b html docs docs/_build
58
python -m xdoctest --quiet protosym
69
pytest --cov=protosym
710
coverage html

0 commit comments

Comments
 (0)