From: Marcelo Trylesinski Date: Sat, 12 Apr 2025 10:40:22 +0000 (+0200) Subject: Include Python 3.14 to the pipeline (#2919) X-Git-Tag: 0.46.2~2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=5d98cd52ef1e2b8e486baac1f7c48e69581fc4ff;p=thirdparty%2Fstarlette.git Include Python 3.14 to the pipeline (#2919) --- diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index 14567a26..17d6b3e4 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: "actions/checkout@v4" @@ -32,3 +32,14 @@ jobs: run: "scripts/test" - name: "Enforce coverage" run: "scripts/coverage" + + # https://github.com/marketplace/actions/alls-green#why + check: + if: always() + needs: [tests] + runs-on: ubuntu-latest + steps: + - name: Decide whether the needed jobs succeeded or failed + uses: re-actors/alls-green@release/v1 + with: + jobs: ${{ toJSON(needs) }} diff --git a/docs/index.md b/docs/index.md index 219f15e4..b501d6b4 100644 --- a/docs/index.md +++ b/docs/index.md @@ -48,7 +48,7 @@ It is production-ready, and gives you the following: ## Sponsorship -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). +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).

🏆 Our Gold Sponsor

diff --git a/mkdocs.yml b/mkdocs.yml index b89b356e..4e5ae9d6 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -2,6 +2,12 @@ site_name: Starlette site_description: The little ASGI library that shines. site_url: https://www.starlette.io +repo_name: encode/starlette +repo_url: https://github.com/encode/starlette +edit_uri: edit/master/docs/ + +strict: true + theme: name: "material" custom_dir: docs/overrides @@ -23,10 +29,6 @@ theme: - content.code.copy - toc.follow -repo_name: encode/starlette -repo_url: https://github.com/encode/starlette -edit_uri: edit/master/docs/ - nav: - Introduction: "index.md" - Features: