Skip to content

Commit cc87f57

Browse files
committed
Add support for 3.13
Still in beta release 2 but this is a template and I can be a little earily for the busy-work
1 parent 9400932 commit cc87f57

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Diff for: .github/workflows/python-tests.yml

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
- "3.10"
3030
- "3.11"
3131
- "3.12"
32+
- "3.13"
3233

3334
steps:
3435
- name: "Repo checkout"

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Python 3.9 | 3.10 | 3.11 | 3.12](https://img.shields.io/badge/Python-3.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue)](https://www.python.org/downloads)
1+
[![Python 3.9 | 3.10 | 3.11 | 3.12 | 3.13](https://img.shields.io/badge/Python-3.9%20%7C%203.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue)](https://www.python.org/downloads)
22
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
33
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)
44

Diff for: noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
TESTS_PATH = "tests"
1313
COVERAGE_FAIL_UNDER = 50
1414
DEFAULT_PYTHON_VERSION = "3.12"
15-
PYTHON_MATRIX = ["3.9", "3.10", "3.11", "3.12"]
15+
PYTHON_MATRIX = ["3.9", "3.10", "3.11", "3.12", "3.13"]
1616
VENV_PATH = "venv"
1717
REQUIREMENT_IN_FILES = [
1818
pathlib.Path("requirements/requirements.in"),

0 commit comments

Comments
 (0)