diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0d95909..722956d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,7 +17,7 @@ jobs: tests: strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.9', 'pypy-3.10'] + python-version: ['3.10', '3.11', '3.12', '3.13', '3.14', 'pypy-3.10', 'pypy-3.11'] runs-on: ubuntu-latest steps: - name: Checkout code diff --git a/README.md b/README.md index b13adf2..99169e6 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +**Note:** redis-py-entraid 1.0.0 is the last version of redis-py that supports Python 3.9, as it has reached [end of life](https://devguide.python.org/versions/). redis-py-entraid 1.1.0 supports Python 3.9+. + The `redis-entraid` Python package helps simplifying the authentication with [Azure Managed Redis](https://azure.microsoft.com/en-us/products/managed-redis) and Azure Cache for Redis using Microsoft Entra ID (formerly Azure Active Directory). It enables seamless integration with Azure's Redis services by fetching authentication tokens and managing the token renewal in the background. This package builds on top of `redis-py` and provides a structured way to authenticate by using a: * System-assigned managed identity diff --git a/pyproject.toml b/pyproject.toml index a2dc647..386357d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ authors = [ ] description = "Entra ID credentials provider implementation for Redis-py client" readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.10" dependencies = [ "redis>=5.3.0", "PyJWT~=2.9.0",