From a5249c67e11832816a114bf3fc3d2fea8a9086fe Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Sat, 28 Sep 2024 09:08:39 -0400 Subject: [PATCH 1/2] Allow testing with uvloop on Python 3.12 There have been binary wheels for uvloop for Python 3.12 for some time. --- .github/workflows/tests.yml | 3 --- pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ab64ed8b..0e63b989 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,9 +24,6 @@ jobs: # uvloop does not support windows - loop: uvloop os: windows-latest - # No 3.12 release yet - - loop: uvloop - python-version: "3.12" runs-on: ${{ matrix.os }} diff --git a/pyproject.toml b/pyproject.toml index 2da1b880..afc5f120 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,7 @@ gssauth = [ test = [ 'flake8~=6.1', 'flake8-pyi~=24.1.0', - 'uvloop>=0.15.3; platform_system != "Windows" and python_version < "3.12.0"', + 'uvloop>=0.15.3; platform_system != "Windows" and python_version < "3.13.0"', 'gssapi; platform_system == "Linux"', 'k5test; platform_system == "Linux"', 'sspilib; platform_system == "Windows"', From 0e1ad8e149cade1ec99ff90f0a5253d09975b262 Mon Sep 17 00:00:00 2001 From: Elvis Pranskevichus Date: Thu, 17 Oct 2024 12:21:04 -0700 Subject: [PATCH 2/2] 3.13! --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index afc5f120..ebf30858 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,7 @@ gssauth = [ test = [ 'flake8~=6.1', 'flake8-pyi~=24.1.0', - 'uvloop>=0.15.3; platform_system != "Windows" and python_version < "3.13.0"', + 'uvloop>=0.15.3; platform_system != "Windows" and python_version < "3.14.0"', 'gssapi; platform_system == "Linux"', 'k5test; platform_system == "Linux"', 'sspilib; platform_system == "Windows"',