Skip to content

Commit 62e264d

Browse files
committed
merge master
2 parents 9304603 + 9914770 commit 62e264d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+3824
-1312
lines changed

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[flake8]
2-
min_python_version = 3.9
2+
min_python_version = 3.10
33

44
# Incompatible with black see https://github.com/ambv/black/issues/315
55
ignore =

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Bug Report
22
description: Report broken or incorrect behaviour
33
labels: ["unconfirmed bug"]
4+
type: Bug
45
body:
56
- type: markdown
67
attributes:
@@ -59,6 +60,7 @@ body:
5960
This command required v1.1.0 or higher of the library. If this errors out then
6061
show some basic information involving your system such as operating system and
6162
Python version.
63+
render: bash
6264
validations:
6365
required: true
6466
- type: checkboxes

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Feature Request
22
description: Suggest a feature for this library
33
labels: ["feature request"]
4+
type: Feature
45
body:
56
- type: input
67
attributes:

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
language: ["python"]
2727
steps:
2828
- name: "Checkout repository"
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030
- name: "Initialize CodeQL"
31-
uses: github/codeql-action/init@v3
31+
uses: github/codeql-action/init@v4
3232
with:
3333
languages: ${{ matrix.language }}
3434
- name: "Autobuild"
35-
uses: github/codeql-action/autobuild@v3
35+
uses: github/codeql-action/autobuild@v4
3636
- name: "Perform CodeQL Analysis"
37-
uses: github/codeql-action/analyze@v3
37+
uses: github/codeql-action/analyze@v4

.github/workflows/docs-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
steps:
3838
- name: "Checkout Repository"
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040
- name: "Setup Python"
4141
uses: actions/setup-python@v6
4242
with:

.github/workflows/docs-json-export.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- name: Checkout repository
1515
id: checkout
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
- name: Set up Python
1818
uses: actions/setup-python@v6
1919
id: setup-python
@@ -35,7 +35,7 @@ jobs:
3535
id: generate-json
3636
run: python scripts/docs_json_exporter.py
3737
- name: Upload docs.json as artifact
38-
uses: actions/upload-artifact@v4.6.2
38+
uses: actions/upload-artifact@v5.0.0
3939
id: artifact-upload
4040
with:
4141
name: Pycord Docs JSON

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
pr_id: ${{ steps.convert_outputs.outputs.pr_id }}
1616
steps:
1717
- name: "Checkout Repository"
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
with:
2020
fetch-tags: true
2121
- name: "Install Python"
@@ -40,7 +40,7 @@ jobs:
4040
working-directory: ./docs
4141
- name: "Crowdin"
4242
id: crowdin
43-
uses: crowdin/github-action@v2.11.0
43+
uses: crowdin/github-action@v2.12.0
4444
with:
4545
upload_sources: false
4646
upload_translations: false
@@ -74,7 +74,7 @@ jobs:
7474
environment: translations
7575
steps:
7676
- name: "Checkout Repository"
77-
uses: actions/checkout@v5
77+
uses: actions/checkout@v6
7878
- name: "Refresh Pull"
7979
run: |
8080
git fetch --all

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
environment: translations
2121
steps:
2222
- name: "Checkout Repository"
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
with:
2525
fetch-tags: true
2626
- name: "Install Python"
@@ -44,7 +44,7 @@ jobs:
4444
sphinx-intl update -p ./build/locales ${{ vars.SPHINX_LANGUAGES }}
4545
working-directory: ./docs
4646
- name: "Crowdin"
47-
uses: crowdin/github-action@v2.11.0
47+
uses: crowdin/github-action@v2.12.0
4848
with:
4949
upload_sources: true
5050
upload_translations: false

.github/workflows/lib-checks.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: "Checkout Repository"
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636
- name: "Setup Python"
3737
uses: actions/setup-python@v6
3838
with:
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-latest
5353
steps:
5454
- name: "Checkout Repository"
55-
uses: actions/checkout@v5
55+
uses: actions/checkout@v6
5656
- name: "Setup Python"
5757
uses: actions/setup-python@v6
5858
with:
@@ -70,7 +70,7 @@ jobs:
7070
runs-on: ubuntu-latest
7171
steps:
7272
- name: "Checkout Repository"
73-
uses: actions/checkout@v5
73+
uses: actions/checkout@v6
7474
- name: "Setup Python"
7575
uses: actions/setup-python@v6
7676
with:
@@ -94,7 +94,7 @@ jobs:
9494
runs-on: ubuntu-latest
9595
steps:
9696
- name: "Checkout Repository"
97-
uses: actions/checkout@v5
97+
uses: actions/checkout@v6
9898
- name: "Setup Python"
9999
uses: actions/setup-python@v6
100100
with:
@@ -120,18 +120,14 @@ 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"]
124-
exclude:
125-
- { python-version: "3.9", os: "macos-latest" }
126-
include:
127-
- { python-version: "3.9", os: "macos-13" }
123+
python-version: ["3.10", "3.11", "3.12", "3.13"]
128124
runs-on: ${{ matrix.os }}
129125
env:
130126
OS: ${{ matrix.os }}
131127
PYTHON: ${{ matrix.python-version }}
132128
steps:
133129
- name: "Checkout Repository"
134-
uses: actions/checkout@v5
130+
uses: actions/checkout@v6
135131
- name: "Setup Python"
136132
uses: actions/setup-python@v6
137133
with:
File renamed without changes.

0 commit comments

Comments
 (0)