Skip to content

Commit debb5cd

Browse files
committed
✨ Update to use python 3.14
1 parent ae38322 commit debb5cd

File tree

8 files changed

+12
-11
lines changed

8 files changed

+12
-11
lines changed

.github/workflows/docs-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: "Setup Python"
4141
uses: actions/setup-python@v5
4242
with:
43-
python-version: "3.13"
43+
python-version: "3.14"
4444
cache: "pip"
4545
cache-dependency-path: "requirements/docs.txt"
4646
check-latest: true

.github/workflows/docs-localization-download.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: "Install Python"
2222
uses: actions/setup-python@v5
2323
with:
24-
python-version: "3.13"
24+
python-version: "3.14"
2525
cache: "pip"
2626
cache-dependency-path: "requirements/_locale.txt"
2727
- name: "Install Dependencies"

.github/workflows/docs-localization-upload.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: "Install Python"
2727
uses: actions/setup-python@v5
2828
with:
29-
python-version: "3.13"
29+
python-version: "3.14"
3030
cache: "pip"
3131
cache-dependency-path: "requirements/_locale.txt"
3232
- name: "Install Dependencies"

.github/workflows/lib-checks.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: "Setup Python"
3737
uses: actions/setup-python@v5
3838
with:
39-
python-version: "3.13"
39+
python-version: "3.14"
4040
cache: "pip"
4141
cache-dependency-path: "requirements/dev.txt"
4242
- name: "Install dependencies"
@@ -56,7 +56,7 @@ jobs:
5656
- name: "Setup Python"
5757
uses: actions/setup-python@v5
5858
with:
59-
python-version: "3.13"
59+
python-version: "3.14"
6060
cache: "pip"
6161
cache-dependency-path: "requirements/dev.txt"
6262
- name: "Install dependencies"
@@ -74,7 +74,7 @@ jobs:
7474
- name: "Setup Python"
7575
uses: actions/setup-python@v5
7676
with:
77-
python-version: "3.13"
77+
python-version: "3.14"
7878
cache: "pip"
7979
cache-dependency-path: "requirements/dev.txt"
8080
- name: "Install dependencies"
@@ -98,7 +98,7 @@ jobs:
9898
- name: "Setup Python"
9999
uses: actions/setup-python@v5
100100
with:
101-
python-version: "3.13"
101+
python-version: "3.14"
102102
cache: "pip"
103103
cache-dependency-path: "requirements/dev.txt"
104104
- name: "Install dependencies"
@@ -120,7 +120,7 @@ jobs:
120120
strategy:
121121
matrix:
122122
os: [ubuntu-latest, macos-latest, windows-latest]
123-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
123+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
124124
exclude:
125125
- { python-version: "3.9", os: "macos-latest" }
126126
include:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
version-branch-name: ${{ needs.pre_config.outputs.branch_name }}
8181
ref: ${{ github.ref_name }}
8282
repository: ${{ github.repository }}
83-
python-version: "3.13"
83+
python-version: "3.14"
8484
release-requirements: "requirements/_release.txt"
8585
version: ${{ needs.pre_config.outputs.version }}
8686
is-rc: ${{ needs.pre_config.outputs.is_rc }}

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ formats: []
44
build:
55
os: ubuntu-22.04
66
tools:
7-
python: "3.13"
7+
python: "3.14"
88

99
sphinx:
1010
configuration: docs/conf.py

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for D
3131
Note
3232
----
3333

34-
Pycord supports Python ``3.9`` - ``3.13``
34+
Pycord supports Python ``3.9`` - ``3.14``
3535

3636
Key Features
3737
------------

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers = [
2525
"Programming Language :: Python :: 3.11",
2626
"Programming Language :: Python :: 3.12",
2727
"Programming Language :: Python :: 3.13",
28+
"Programming Language :: Python :: 3.14",
2829
"Topic :: Internet",
2930
"Topic :: Software Development :: Libraries",
3031
"Topic :: Software Development :: Libraries :: Python Modules",

0 commit comments

Comments
 (0)