Skip to content

Commit 65c9f37

Browse files
feat: add support for python 3.14
1 parent 2086c7a commit 65c9f37

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

.github/workflows/codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
timeout-minutes: 10
1313
strategy:
1414
matrix:
15-
python-version: ["3.13"]
15+
python-version: ["3.14"]
1616
permissions:
1717
contents: read
1818
env:

.github/workflows/flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
timeout-minutes: 20
1313
strategy:
1414
matrix:
15-
python-version: ["3.13"]
15+
python-version: ["3.14"]
1616
permissions:
1717
contents: read
1818
steps:

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
timeout-minutes: 20
1313
strategy:
1414
matrix:
15-
python-version: ["3.13"]
15+
python-version: ["3.14"]
1616
permissions:
1717
contents: read
1818
steps:

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
- "3.11"
2525
- "3.12"
2626
- "3.13"
27+
- "3.14"
2728
permissions:
2829
contents: read
2930
steps:

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@ classifiers = [
1515
"Programming Language :: Python :: 3.11",
1616
"Programming Language :: Python :: 3.12",
1717
"Programming Language :: Python :: 3.13",
18+
"Programming Language :: Python :: 3.14",
1819
"Programming Language :: Python :: Implementation :: CPython",
1920
"License :: OSI Approved :: MIT License",
2021
"Operating System :: OS Independent",
2122
]
2223
requires-python = ">=3.7"
23-
dependencies = ["slack_sdk>=3.37.0,<4"]
24+
dependencies = ["slack_sdk>=3.38.0,<4"]
2425

2526

2627
[project.urls]

0 commit comments

Comments
 (0)