diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e756823..a248659 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,10 +8,6 @@ on: branches: - main -concurrency: - group: ci-${{ github.ref_name }} - cancel-in-progress: true - jobs: lint-python: name: Lint Python diff --git a/CHANGELOG.md b/CHANGELOG.md index efcbdf6..edabdec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,9 @@ Using the following categories, list your changes in this order: ## [Unreleased] -- Nothing (yet)! +### Added + +- Support Python 3.13. ## [2.0.1] - 2024-09-13 diff --git a/README.md b/README.md index 9cd0ad3..73a65c6 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,8 @@ _Production-grade static file server for Python web apps._ +_A fork of [WhiteNoise](https://github.com/evansd/whitenoise) for continued [maintenance and feature updates](https://archmonger.github.io/ServeStatic/latest/changelog/)._ + --- With a couple of lines of configuration `ServeStatic` allows your web app to serve its own static files, making it a self-contained unit that can be deployed anywhere without relying on nginx, Amazon S3, or any other external service. This is especially useful on Heroku, OpenShift, and other PaaS providers. @@ -55,7 +57,3 @@ There are two answers here. One is that ServeStatic is designed to work in situa None of this is rocket science, but it's fiddly and annoying and `ServeStatic` takes care of all it for you. - ---- - -_This project is a fork of [WhiteNoise](https://github.com/evansd/whitenoise) for continued maintenance and feature updates._