changeset 53273:fb8373b37f6e stable

hgdemandimport: exclude _contextvars (newly imported from threading) This is needed for Python 3.14.0b1 compatibility. threading now imports _contextvars: https://github.com/python/cpython/commit/d687900f98114bb5910daad9553ae381d7daf94b Originally reported in Fedora: https://bugzilla.redhat.com/2365820
author Miro Hron?ok <miro@hroncok.cz>
date Tue, 13 May 2025 12:04:47 +0200
parents dde91b1feca6
children e61533488826
files hgdemandimport/__init__.py
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/hgdemandimport/__init__.py	Thu May 08 20:46:34 2025 -0400
+++ b/hgdemandimport/__init__.py	Tue May 13 12:04:47 2025 +0200
@@ -60,6 +60,7 @@
     'setuptools',
     '_distutils_hack.override',
     # threading is locally imported by importlib.util.LazyLoader.exec_module
+    '_contextvars',
     '_weakrefset',
     'warnings',
     'threading',