Skip to content

Commit 3a7a8de

Browse files
authored
Merge pull request #171 from Preocts/preocts
Update supported versions
2 parents 9f6069d + cc87f57 commit 3a7a8de

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/python-tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ jobs:
2525
- "windows-latest"
2626
- "ubuntu-latest"
2727
python-version:
28-
- "3.8"
2928
- "3.9"
3029
- "3.10"
3130
- "3.11"
3231
- "3.12"
32+
- "3.13"
3333

3434
steps:
3535
- name: "Repo checkout"
@@ -67,7 +67,7 @@ jobs:
6767
- name: "Set up Python"
6868
uses: "actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c"
6969
with:
70-
python-version: "3.11"
70+
python-version: "3.12"
7171

7272
- name: "Install nox"
7373
run: |
@@ -96,7 +96,7 @@ jobs:
9696
- name: "Set up Python"
9797
uses: "actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c"
9898
with:
99-
python-version: "3.11"
99+
python-version: "3.12"
100100

101101
- name: "Install nox"
102102
run: |

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Python 3.8 | 3.9 | 3.10 | 3.11 | 3.12](https://img.shields.io/badge/Python-3.8%20%7C%203.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

noxfile.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
MODULE_NAME = "module_name"
1212
TESTS_PATH = "tests"
1313
COVERAGE_FAIL_UNDER = 50
14-
DEFAULT_PYTHON_VERSION = "3.11"
15-
PYTHON_MATRIX = ["3.8", "3.9", "3.10", "3.11", "3.12"]
14+
DEFAULT_PYTHON_VERSION = "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"),

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "module-name"
7-
requires-python = ">=3.8"
7+
requires-python = ">=3.9"
88
description = "Module Description"
99
readme = "README.md"
1010
license = { file = "LICENSE" }

requirements/requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.11
2+
# This file is autogenerated by pip-compile with Python 3.12
33
# by the following command:
44
#
55
# pip-compile --no-emit-index-url requirements/requirements-dev.in

requirements/requirements-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.11
2+
# This file is autogenerated by pip-compile with Python 3.12
33
# by the following command:
44
#
55
# pip-compile --no-emit-index-url requirements/requirements-test.in

requirements/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.11
2+
# This file is autogenerated by pip-compile with Python 3.12
33
# by the following command:
44
#
55
# pip-compile --no-emit-index-url requirements/requirements.in

0 commit comments

Comments
 (0)