From 117fb82081af2b7e490a914cefd80472588155b5 Mon Sep 17 00:00:00 2001 From: fullonic Date: Fri, 19 Feb 2021 17:38:13 +0100 Subject: [PATCH] Upgrade version to support python 3.9 --- .github/workflows/tests.yml | 2 +- README.md | 5 +++++ setup.py | 3 ++- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bd4a5b4..f259a1a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: extras-install: [test_brotli, test_brotlipy] - python-version: [3.6, 3.7, 3.8] + python-version: [3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index 9a7c145..01a5166 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,10 @@ # brotli-asgi +[![Packaging status](https://img.shields.io/pypi/v/brotli-asgi?color=%2334D058&label=pypi%20package)](https://pypi.org/project/brotli-asgi) +[![CI](https://github.com/fullonic/brotli-asgi/workflows/Tests/badge.svg)](https://github.com/fullonic/brotli-asgi/actions?query=workflow%3ATests) + + + `BrotliMiddleware` adds [Brotli](https://github.com/google/brotli) response compression to ASGI applications (Starlette, FastAPI, Quart, etc.). It provides faster and more dense compression than GZip, and can be used as a drop in replacement for the `GZipMiddleware` shipped with Starlette. **Installation** diff --git a/setup.py b/setup.py index 4b96e30..224b28f 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name="brotli-asgi", - version="0.4", + version="1.1.0", url="https://github.com/fullonic/brotli-asgi", license="MIT", author="Diogo B Freitas", @@ -33,5 +33,6 @@ "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", ], )