Skip to content

Commit 0d962f3

Browse files
committed
Implement support for *Python* 3.14, drop support for *Python* 3.10.
1 parent d49dd78 commit 0d962f3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/continuous-integration-quality-unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [macOS-latest, ubuntu-latest, windows-latest]
11-
python-version: ["3.10", 3.11, 3.12, 3.13]
11+
python-version: [3.11, 3.12, 3.13, 3.14]
1212
fail-fast: false
1313
runs-on: ${{ matrix.os }}
1414
steps:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ repos:
3434
rev: 1.19.1
3535
hooks:
3636
- id: blacken-docs
37-
language_version: python3.10
37+
language_version: python3.11
3838
- repo: https://github.com/pre-commit/mirrors-prettier
3939
rev: "v4.0.0-alpha.8"
4040
hooks:

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "colour-clf-io"
33
version = "0.2.0"
44
description = "Library to parse and create file in the Common LUT format"
55
readme = "README.rst"
6-
requires-python = ">=3.10,<3.14"
6+
requires-python = ">=3.11,<3.15"
77
authors = [
88
{ name = "Colour Developers", email = "colour-developers@colour-science.org" },
99
]
@@ -115,7 +115,7 @@ reportUnusedExpression = false
115115
addopts = "--durations=5"
116116

117117
[tool.ruff]
118-
target-version = "py310"
118+
target-version = "py311"
119119
line-length = 88
120120
select = ["ALL"]
121121
ignore = [

0 commit comments

Comments
 (0)