Skip to content

Commit 9400932

Browse files
committed
Remove 3.8 support, default to 3.12
1 parent ca837c0 commit 9400932

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-8
lines changed

.github/workflows/python-tests.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ jobs:
2525
- "windows-latest"
2626
- "ubuntu-latest"
2727
python-version:
28-
- "3.8"
2928
- "3.9"
3029
- "3.10"
3130
- "3.11"
@@ -67,7 +66,7 @@ jobs:
6766
- name: "Set up Python"
6867
uses: "actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c"
6968
with:
70-
python-version: "3.11"
69+
python-version: "3.12"
7170

7271
- name: "Install nox"
7372
run: |
@@ -96,7 +95,7 @@ jobs:
9695
- name: "Set up Python"
9796
uses: "actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c"
9897
with:
99-
python-version: "3.11"
98+
python-version: "3.12"
10099

101100
- name: "Install nox"
102101
run: |

README.md

Lines changed: 1 addition & 1 deletion
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](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)
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

pyproject.toml

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)