Skip to content

Commit 1fb8e2f

Browse files
committed
feat: add support for python 3.14
1 parent ef92a84 commit 1fb8e2f

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/pre-commit-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up Python
2222
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
2323
with:
24-
python-version: '3.13'
24+
python-version: '3.14'
2525

2626
- name: Install Hatch
2727
uses: pypa/hatch@install

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Python
2323
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
2424
with:
25-
python-version: "3.13"
25+
python-version: "3.14"
2626

2727
- name: Install Hatch
2828
uses: pypa/hatch@install

.github/workflows/python-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
- '3.11'
3131
- '3.12'
3232
- '3.13'
33+
- '3.14'
3334
name: "Test on ${{matrix.os}} with Python ${{matrix.python-version}}"
3435
steps:
3536
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3.11",
2020
"Programming Language :: Python :: 3.12",
2121
"Programming Language :: Python :: 3.13",
22+
"Programming Language :: Python :: 3.14",
2223
]
2324
dependencies = ["py-irclib>=0.8.0", "typing_extensions"]
2425

@@ -67,7 +68,7 @@ post-install-commands = []
6768
post-install-commands = []
6869

6970
[[tool.hatch.envs.hatch-test.matrix]]
70-
python = ["3.13", "3.12", "3.11", "3.10"]
71+
python = ["3.14", "3.13", "3.12", "3.11", "3.10"]
7172

7273
[tool.hatch.envs.pre-commit]
7374
extra-dependencies = [

0 commit comments

Comments
 (0)