Skip to content

Commit 5d98cd5

Browse files
authored
Include Python 3.14 to the pipeline (#2919)
1 parent eb6cebb commit 5d98cd5

File tree

3 files changed

+19
-6
lines changed

3 files changed

+19
-6
lines changed

.github/workflows/test-suite.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
17+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1818

1919
steps:
2020
- uses: "actions/checkout@v4"
@@ -32,3 +32,14 @@ jobs:
3232
run: "scripts/test"
3333
- name: "Enforce coverage"
3434
run: "scripts/coverage"
35+
36+
# https://github.com/marketplace/actions/alls-green#why
37+
check:
38+
if: always()
39+
needs: [tests]
40+
runs-on: ubuntu-latest
41+
steps:
42+
- name: Decide whether the needed jobs succeeded or failed
43+
uses: re-actors/alls-green@release/v1
44+
with:
45+
jobs: ${{ toJSON(needs) }}

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ It is production-ready, and gives you the following:
4848

4949
## Sponsorship
5050

51-
Starlette is an open-source project that relies on community support. You can help us maintain and improve the framework by [becoming a sponsor](/sponsorship).
51+
Starlette is an open-source project that relies on community support. You can help us maintain and improve the framework by [becoming a sponsor](sponsorship.md).
5252

5353
<div style="text-align: center; margin: 2rem 0;">
5454
<h4 style="color: #ffd700; margin-bottom: 1rem;">🏆 Our Gold Sponsor</h4>

mkdocs.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ site_name: Starlette
22
site_description: The little ASGI library that shines.
33
site_url: https://www.starlette.io
44

5+
repo_name: encode/starlette
6+
repo_url: https://github.com/encode/starlette
7+
edit_uri: edit/master/docs/
8+
9+
strict: true
10+
511
theme:
612
name: "material"
713
custom_dir: docs/overrides
@@ -23,10 +29,6 @@ theme:
2329
- content.code.copy
2430
- toc.follow
2531

26-
repo_name: encode/starlette
27-
repo_url: https://github.com/encode/starlette
28-
edit_uri: edit/master/docs/
29-
3032
nav:
3133
- Introduction: "index.md"
3234
- Features:

0 commit comments

Comments
 (0)