From 91c3c5d173723e1e28d598541491ee9984f4ff6f Mon Sep 17 00:00:00 2001 From: Anderson Bravalheri Date: Fri, 2 Aug 2024 11:59:06 +0100 Subject: [PATCH] Update setuptools/compat/py312.py Co-authored-by: Avasam --- setuptools/compat/py312.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setuptools/compat/py312.py b/setuptools/compat/py312.py index 71f372adc44..71bd4413534 100644 --- a/setuptools/compat/py312.py +++ b/setuptools/compat/py312.py @@ -1,6 +1,6 @@ import sys -if sys.version_info >= (3, 13): +if sys.version_info >= (3, 12, 4): # Python 3.13 should support `.pth` files encoded in UTF-8 # See discussion in https://github.com/python/cpython/issues/77102 PTH_ENCODING = "utf-8"