Skip to content

Commit db874ad

Browse files
authored
Merge pull request #74 from redis/python-3.14-test-matrix
Add Python 3.14 to test matrix to match Dockerfile
2 parents 52ff690 + cd6a926 commit db874ad

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
strategy:
9090
fail-fast: false
9191
matrix:
92-
python-version: ["3.10", "3.11", "3.12", "3.13"]
92+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
9393

9494
services:
9595
redis:
@@ -151,7 +151,7 @@ jobs:
151151
fail-fast: false
152152
matrix:
153153
os: [windows-latest, macos-latest]
154-
python-version: ["3.10", "3.11", "3.12", "3.13"]
154+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
155155

156156
steps:
157157
- name: ⚙️ Checkout the project

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
needs: validate-release
8888
strategy:
8989
matrix:
90-
python-version: ["3.10", "3.11", "3.12", "3.13"]
90+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
9191

9292
services:
9393
redis:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Redis MCP Server
22
[![Integration](https://github.com/redis/mcp-redis/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/redis/mcp-redis/actions/workflows/ci.yml)
33
[![PyPI - Version](https://img.shields.io/pypi/v/redis-mcp-server)](https://pypi.org/project/redis-mcp-server/)
4-
[![Python Version](https://img.shields.io/badge/python-3.13%2B-blue&logo=redis)](https://www.python.org/downloads/)
4+
[![Python Version](https://img.shields.io/badge/python-3.14%2B-blue&logo=redis)](https://www.python.org/downloads/)
55
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE.txt)
66
[![Verified on MseeP](https://mseep.ai/badge.svg)](https://mseep.ai/app/70102150-efe0-4705-9f7d-87980109a279)
77
[![Docker Image Version](https://img.shields.io/docker/v/mcp/redis?sort=semver&logo=docker&label=Docker)](https://hub.docker.com/r/mcp/redis)
@@ -148,7 +148,7 @@ pip install redis-mcp-server
148148
And start it using `uv` the package in your environment.
149149

150150
```sh
151-
uv python install 3.13
151+
uv python install 3.14
152152
uv sync
153153
uv run redis-mcp-server --url redis://localhost:6379/0
154154
```
@@ -439,7 +439,7 @@ export OPENAI_API_KEY="<openai_token>"
439439
And run the [application](./examples/redis_assistant.py).
440440

441441
```commandline
442-
python3.13 redis_assistant.py
442+
python3.14 redis_assistant.py
443443
```
444444

445445
You can troubleshoot your agent workflows using the [OpenAI dashboard](https://platform.openai.com/traces/).

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ classifiers = [
1717
"Programming Language :: Python :: 3.11",
1818
"Programming Language :: Python :: 3.12",
1919
"Programming Language :: Python :: 3.13",
20+
"Programming Language :: Python :: 3.14",
2021
"Topic :: Database",
2122
"Topic :: Software Development :: Libraries :: Python Modules",
2223
]

0 commit comments

Comments
 (0)