Skip to content

Commit 88e18ae

Browse files
committed
feat: support python 3.14
Signed-off-by: Adria Montoto <75563346+adriamontoto@users.noreply.github.com>
1 parent d7bc4d1 commit 88e18ae

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

.github/workflows/ci.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
fail-fast: false
2525
matrix:
2626
os: [ubuntu-latest, windows-latest]
27-
python-version: [3.11, 3.12, 3.13]
27+
python-version: [3.11, 3.12, 3.13, 3.14]
2828

2929
permissions:
3030
contents: read
@@ -82,7 +82,7 @@ jobs:
8282
fail-fast: false
8383
matrix:
8484
os: [ubuntu-latest]
85-
python-version: [3.13]
85+
python-version: [3.14]
8686

8787
permissions:
8888
contents: read
@@ -154,7 +154,7 @@ jobs:
154154
fail-fast: false
155155
matrix:
156156
os: [ubuntu-latest]
157-
python-version: [3.13]
157+
python-version: [3.14]
158158

159159
permissions:
160160
contents: read
@@ -211,7 +211,7 @@ jobs:
211211
fail-fast: false
212212
matrix:
213213
os: [ubuntu-latest]
214-
python-version: [3.13]
214+
python-version: [3.14]
215215

216216
permissions:
217217
contents: write
@@ -259,7 +259,7 @@ jobs:
259259
fail-fast: false
260260
matrix:
261261
os: [ubuntu-latest]
262-
python-version: [3.13]
262+
python-version: [3.14]
263263

264264
permissions:
265265
contents: read
@@ -310,7 +310,7 @@ jobs:
310310
fail-fast: false
311311
matrix:
312312
os: [ubuntu-latest]
313-
python-version: [3.13]
313+
python-version: [3.14]
314314

315315
permissions:
316316
contents: read
@@ -389,7 +389,7 @@ jobs:
389389
fail-fast: false
390390
matrix:
391391
os: [ubuntu-latest]
392-
python-version: [3.13]
392+
python-version: [3.14]
393393

394394
permissions:
395395
contents: read
@@ -433,7 +433,7 @@ jobs:
433433
fail-fast: false
434434
matrix:
435435
os: [ubuntu-latest]
436-
python-version: [3.13]
436+
python-version: [3.14]
437437

438438
permissions:
439439
contents: read
@@ -545,7 +545,7 @@ jobs:
545545
fail-fast: false
546546
matrix:
547547
os: [ubuntu-latest]
548-
python-version: [3.13]
548+
python-version: [3.14]
549549

550550
permissions:
551551
contents: read

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
fail_fast: true
22

33
default_language_version:
4-
python: python3.13
4+
python: python3.14
55

66
repos:
77
- repo: https://github.com/pre-commit/pre-commit-hooks

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FULL_SOURCES = $(SOURCES) tests
66
CONFIGURATION_FILE = pyproject.toml
77
CI ?= false
88
VERBOSE ?= false
9-
PYTHON_VERSION ?= 3.13
9+
PYTHON_VERSION ?= 3.14
1010
PYTHON_VIRTUAL_ENVIRONMENT ?= .venv
1111
UV_BIN ?= uv
1212
GROUP ?= all

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ classifiers = [
2626
'Programming Language :: Python :: 3.11',
2727
'Programming Language :: Python :: 3.12',
2828
'Programming Language :: Python :: 3.13',
29+
'Programming Language :: Python :: 3.14',
2930
]
3031
keywords = [
3132
'python',
@@ -39,7 +40,7 @@ keywords = [
3940
'selection',
4041
]
4142
requires-python = '>=3.11'
42-
dependencies = ['value-object-pattern>=0.10.0']
43+
dependencies = ['value-object-pattern>=1.20.0']
4344
dynamic = ['version']
4445

4546
[project.urls]

0 commit comments

Comments
 (0)