@@ -267,7 +267,6 @@ def windows_wheels(pythonVersions, testPackages, params, wheelStashes, sharedPip
267267 ' UV_TOOL_DIR=C:\\ Users\\ ContainerUser\\ Documents\\ uvtools' ,
268268 ' UV_PYTHON_INSTALL_DIR=C:\\ Users\\ ContainerUser\\ Documents\\ uvpython' ,
269269 ' UV_CACHE_DIR=C:\\ Users\\ ContainerUser\\ Documents\\ uvcache' ,
270- ' UV_INDEX_STRATEGY=unsafe-best-match' ,
271270 ]){
272271 docker. image(env. DEFAULT_PYTHON_DOCKER_IMAGE ? env. DEFAULT_PYTHON_DOCKER_IMAGE : ' python' ). inside(" --mount source=uv_python_install_dir,target=C:\\ Users\\ ContainerUser\\ Documents\\ uvpython --mount source=msvc-runtime,target=c:\\ msvc_runtime --mount source=${ sharedPipCacheVolumeName} ,target=${ env:PIP_CACHE_DIR} " ){
273272 installMSVCRuntime(' c:\\ msvc_runtime\\ ' )
@@ -350,7 +349,6 @@ def linux_wheels(pythonVersions, testPackages, params, wheelStashes, sharedPipCa
350349 try {
351350 withEnv([
352351 ' PIP_CACHE_DIR=/tmp/pipcache' ,
353- ' UV_INDEX_STRATEGY=unsafe-best-match' ,
354352 ' UV_TOOL_DIR=/tmp/uvtools' ,
355353 ' UV_PYTHON_INSTALL_DIR=/tmp/uvpython' ,
356354 ' UV_CACHE_DIR=/tmp/uvcache' ,
@@ -451,7 +449,6 @@ pipeline {
451449 }
452450 environment{
453451 PIP_CACHE_DIR = ' /tmp/pipcache'
454- UV_INDEX_STRATEGY = ' unsafe-best-match'
455452 UV_TOOL_DIR = ' /tmp/uvtools'
456453 UV_PYTHON_INSTALL_DIR = ' /tmp/uvpython'
457454 UV_CACHE_DIR = ' /tmp/uvcache'
@@ -837,7 +834,6 @@ pipeline {
837834 stage(' Linux' ){
838835 environment{
839836 PIP_CACHE_DIR = ' /tmp/docker_cache/.cache/pip'
840- UV_INDEX_STRATEGY = ' unsafe-best-match'
841837 UV_TOOL_DIR = ' /tmp/uvtools'
842838 UV_PYTHON_INSTALL_DIR = ' /tmp/uvpython'
843839 UV_CACHE_DIR = ' /tmp/uvcache'
@@ -913,7 +909,6 @@ pipeline {
913909 expression {return nodesByLabel(' windows && docker && x86' ). size() > 0 }
914910 }
915911 environment{
916- UV_INDEX_STRATEGY = ' unsafe-best-match'
917912 PIP_CACHE_DIR = ' C:\\ Users\\ ContainerUser\\ Documents\\ pipcache'
918913 UV_TOOL_DIR = ' C:\\ Users\\ ContainerUser\\ Documents\\ uvtools'
919914 UV_PYTHON_INSTALL_DIR = ' C:\\ Users\\ ContainerUser\\ Documents\\ uvpython'
@@ -1033,7 +1028,6 @@ pipeline {
10331028 }
10341029 environment{
10351030 PIP_CACHE_DIR = ' /tmp/pipcache'
1036- UV_INDEX_STRATEGY = ' unsafe-best-match'
10371031 UV_CACHE_DIR = ' /tmp/uvcache'
10381032 }
10391033 steps{
@@ -1093,7 +1087,7 @@ pipeline {
10931087 sh(label : ' Running Tox' ,
10941088 script : """ python${ pythonVersion} -m venv venv
10951089 venv/bin/python -m pip install --disable-pip-version-check uv
1096- UV_INDEX_STRATEGY=unsafe-best-match CONAN_REVISIONS_ENABLED=1 venv/bin/uv run --only-group tox --with tox-uv tox run --installpkg ${ it.path} -e py${ pythonVersion.replace('.', '')}
1090+ CONAN_REVISIONS_ENABLED=1 venv/bin/uv run --only-group tox --with tox-uv tox run --installpkg ${ it.path} -e py${ pythonVersion.replace('.', '')}
10971091 rm -rf ./.tox
10981092 rm -rf ./venv
10991093 """
@@ -1195,7 +1189,6 @@ pipeline {
11951189 testCommand : {
11961190 withEnv([
11971191 ' PIP_CACHE_DIR=/tmp/pipcache' ,
1198- ' UV_INDEX_STRATEGY=unsafe-best-match' ,
11991192 ' UV_TOOL_DIR=/tmp/uvtools' ,
12001193 ' UV_PYTHON_INSTALL_DIR=/tmp/uvpython' ,
12011194 ' UV_CACHE_DIR=/tmp/uvcache' ,
@@ -1247,7 +1240,6 @@ pipeline {
12471240 stage(' Deploy to pypi' ) {
12481241 environment{
12491242 PIP_CACHE_DIR = ' /tmp/pipcache'
1250- UV_INDEX_STRATEGY = ' unsafe-best-match'
12511243 UV_TOOL_DIR = ' /tmp/uvtools'
12521244 UV_PYTHON_INSTALL_DIR = ' /tmp/uvpython'
12531245 UV_CACHE_DIR = ' /tmp/uvcache'
@@ -1289,7 +1281,6 @@ pipeline {
12891281 withEnv(
12901282 [
12911283 " TWINE_REPOSITORY_URL=${ SERVER_URL} " ,
1292- ' UV_INDEX_STRATEGY=unsafe-best-match'
12931284 ]
12941285 ){
12951286 withCredentials(
0 commit comments