Skip to content

Commit d65319f

Browse files
authored
Temporarily disable pulling wheels from our indices (DataDog#21254)
1 parent d9eb68e commit d65319f

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

.builders/scripts/build_wheels.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,14 @@ def main():
112112
str(python_path), '-m', 'pip', 'wheel',
113113
'-r', str(MOUNT_DIR / 'requirements.in'),
114114
'--wheel-dir', str(staged_wheel_dir),
115-
'--extra-index-url', CUSTOM_EXTERNAL_INDEX,
115+
# Temporarily removing extra index urls. See below.
116+
# '--extra-index-url', CUSTOM_EXTERNAL_INDEX,
116117
]
117-
if args.use_built_index:
118-
command_args.extend(['--extra-index-url', CUSTOM_BUILT_INDEX])
118+
# Temporarily disable extra index urls. There are broken wheels in the gcloud bucket
119+
# while working on removing tests from them. Adding extra indices causes undefined behavior
120+
# and can pull a broken image, preventing the building from running.
121+
# if args.use_built_index:
122+
# command_args.extend(['--extra-index-url', CUSTOM_BUILT_INDEX])
119123

120124
check_process(command_args, env=env_vars)
121125

0 commit comments

Comments
 (0)