Skip to content

Commit 679ba7c

Browse files
th0masbrickeylev
andauthored
fix(toolchains): include tcl/** files in Windows interpreter (#1552)
closes #1544 The tcl subdirectory of the interpreter Windows build needs to be kept otherwise packages such as matplotlib will break. Co-authored-by: Richard Levasseur <[email protected]>
1 parent 2c82656 commit 679ba7c

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ Breaking changes:
9797
* (gazelle) Generate a single `py_test` target when `gazelle:python_generation_mode project`
9898
is used.
9999

100+
* (toolchains) Keep tcl subdirectory in Windows build of hermetic interpreter.
101+
100102
* (bzlmod) sub-modules now don't have the `//conditions:default` clause in the
101103
hub repos created by `pip.parse`. This should fix confusing error messages
102104
in case there is a misconfiguration of toolchains or a bug in `rules_python`.

python/repositories.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,7 @@ def _python_repository_impl(rctx):
259259
"libs/**",
260260
"Scripts/**",
261261
"share/**",
262+
"tcl/**",
262263
]
263264
else:
264265
glob_include += [

0 commit comments

Comments
 (0)