From ccfd2547c7d8b3a7834ccce871fdbb630177431f Mon Sep 17 00:00:00 2001 From: Charlie Lin Date: Thu, 11 Sep 2025 17:44:53 +0000 Subject: [PATCH] Drop spurious multhreading test Per https://github.com/msgpack/msgpack-python/pull/641#discussion_r2315489310, sharing more than one `Packer` object is not supported. --- .github/workflows/test.yml | 2 -- msgpack/_cmsgpack.pyx | 2 +- test/{test_multithreading.py => uneeded_test_multithreading.py} | 0 3 files changed, 1 insertion(+), 3 deletions(-) rename test/{test_multithreading.py => uneeded_test_multithreading.py} (100%) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 93d7e69..c6c1924 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,8 +29,6 @@ jobs: - name: Prepare shell: bash run: | - # TODO: Workaround for Windows tests failing when upgrading `pip` with exit code 1 - # pip install -U pip pip install -r requirements.txt pytest - name: Install pytest-run-parallel under free-threading diff --git a/msgpack/_cmsgpack.pyx b/msgpack/_cmsgpack.pyx index 41340ee..054478b 100644 --- a/msgpack/_cmsgpack.pyx +++ b/msgpack/_cmsgpack.pyx @@ -1,5 +1,5 @@ # coding: utf-8 -#cython: embedsignature=True, c_string_encoding=ascii, language_level=3, freethreading_compatible=True +# cython: embedsignature=True, c_string_encoding=ascii, language_level=3, freethreading_compatible=True from cpython.datetime cimport import_datetime, datetime_new import_datetime() diff --git a/test/test_multithreading.py b/test/uneeded_test_multithreading.py similarity index 100% rename from test/test_multithreading.py rename to test/uneeded_test_multithreading.py