From 12ea9b275bf24f6025b925c79ab303ae6043895e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Voron?= Date: Wed, 9 Oct 2024 08:34:20 +0200 Subject: [PATCH] Revert "Enable Python 3.13 support" This reverts commit 3dc4a8584fb99405e5f684e830853e7790e6748c. `httptools` fails to install on 3.13. See: https://github.com/MagicStack/httptools/issues/104 --- .github/workflows/build.yml | 2 +- pyproject.toml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0785956..5811314 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python_version: ['3.9', '3.10', '3.11', '3.12', '3.13'] + python_version: ['3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index d90dca0..53cfa8b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,7 +72,6 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", - "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3 :: Only", "Topic :: Internet :: WWW/HTTP :: Session", ]