Skip to content

Commit 9ef105b

Browse files
author
Antoine
committed
Update Python version requirements to >=3.10 in multiple pyproject.toml files and adjust OnPush workflow matrix
1 parent e486c51 commit 9ef105b

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

.github/workflows/OnPush.yml

Lines changed: 3 additions & 2 deletions
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", "3.12", "3.13"]
14+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1515

1616
steps:
1717
- name: Checkout code
@@ -45,4 +45,5 @@ jobs:
4545
uses: mikepenz/action-junit-report@v5
4646
with:
4747
report_paths: tests_reports/**/report.xml
48-
include_passed: true
48+
include_passed: true
49+
check_name: Pytest Test Report (${{ matrix.python-version }})

cache/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "A simple cache manager"
55
authors = [
66
{ name = "Antoine BUIREY", email = "antoine.buirey@gmail.com" }
77
]
8-
requires-python = ">=3.8"
8+
requires-python = ">=3.10"
99

1010

1111
[tool.pytest.ini_options]

colors/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "A color class allowing to manipulate colors"
55
authors = [
66
{ name = "Antoine BUIREY", email = "antoine.buirey@gmail.com" }
77
]
8-
requires-python = ">=3.8"
8+
requires-python = ">=3.10"
99

1010

1111
[tool.pytest.ini_options]

config/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "A library to manage configuration files"
55
authors = [
66
{ name = "Antoine BUIREY", email = "antoine.buirey@gmail.com" }
77
]
8-
requires-python = ">=3.8"
8+
requires-python = ">=3.10"
99

1010
[tool.setuptools]
1111
packages = { find = { include = ["config*"], exclude = ["*_tests"] } }

http_code/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "A list of HTTP status codes"
55
authors = [
66
{ name = "Antoine BUIREY", email = "antoine.buirey@gmail.com" }
77
]
8-
requires-python = ">=3.8"
8+
requires-python = ">=3.10"
99

1010

1111
[tool.pytest.ini_options]

version/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "A library to manage version numbers"
55
authors = [
66
{ name = "Antoine BUIREY", email = "antoine.buirey@gmail.com" }
77
]
8-
requires-python = ">=3.8"
8+
requires-python = ">=3.10"
99

1010

1111
[tool.pytest.ini_options]

0 commit comments

Comments
 (0)