From 61e967afb0ca9e7333651874989e487f27b3fee1 Mon Sep 17 00:00:00 2001 From: Damian Shaw Date: Sat, 9 Mar 2024 11:05:31 -0500 Subject: [PATCH 1/3] Update Windows CI tests to run on Python 3.12 --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a6d891f8289..b439d3c1f7b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -162,10 +162,12 @@ jobs: os: [Windows] python: - "3.8" - # Commented out, since Windows tests are expensively slow. + # Commented out, since Windows tests are expensively slow, + # only test the oldest and newest Python supported by pip # - "3.9" # - "3.10" - - "3.11" + # - "3.11" + - "3.12" group: [1, 2] steps: From ee6386be403cf9d653d1e38de57566ad94d4137d Mon Sep 17 00:00:00 2001 From: Damian Shaw Date: Sat, 9 Mar 2024 11:10:08 -0500 Subject: [PATCH 2/3] NEWS Entry --- news/12562.trivial.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 news/12562.trivial.rst diff --git a/news/12562.trivial.rst b/news/12562.trivial.rst new file mode 100644 index 00000000000..ab88c4077bd --- /dev/null +++ b/news/12562.trivial.rst @@ -0,0 +1 @@ +Update CI tests for Windows to run on Python 3.12 From 876cfe36a79a4160a2c04d27a5b597b3f09abe42 Mon Sep 17 00:00:00 2001 From: Damian Date: Sat, 9 Mar 2024 18:49:55 -0500 Subject: [PATCH 3/3] Remove test on allowing colons in entry point, as not considered supported --- tests/functional/test_uninstall.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/functional/test_uninstall.py b/tests/functional/test_uninstall.py index 80ffe056ed1..af140e07159 100644 --- a/tests/functional/test_uninstall.py +++ b/tests/functional/test_uninstall.py @@ -238,7 +238,6 @@ def test_uninstall_overlapping_package( "console_scripts", [ "test_ = distutils_install:test", - "test_:test_ = distutils_install:test_test", ",test_ = distutils_install:test_test", ", = distutils_install:test_test", ],