From a684ef1ccc321e655a1d47d5dc3cf7e59a1788b7 Mon Sep 17 00:00:00 2001 From: Justin Spahr-Summers Date: Wed, 2 Oct 2024 21:54:00 +0100 Subject: [PATCH] Require Python 3.10 --- .github/workflows/main.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bf805c4..4b0e0c5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: "3.10" - run: pip install . - run: pip install -U pytest diff --git a/pyproject.toml b/pyproject.toml index 9b01f45..3f9dfde 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "mcp-python" version = "0.1.3" description = "Model Context Protocol implementation for Python" readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.10" dependencies = [ "anyio", "httpx",