Core: require setuptools>=75 (#5346)

Setuptools 70.3.0 seems to not work for us.
This commit is contained in:
black-sliver
2025-08-19 17:35:50 +00:00
committed by GitHub
parent 48906de873
commit 16d5b453a7
3 changed files with 4 additions and 4 deletions

View File

@@ -30,7 +30,7 @@ try:
install_cx_freeze = False
except pkg_resources.ResolutionError:
install_cx_freeze = True
except ImportError:
except (AttributeError, ImportError):
install_cx_freeze = True
pkg_resources = None # type: ignore[assignment]