amoeba commented on PR #45420: URL: https://github.com/apache/arrow/pull/45420#issuecomment-2635349416
I had hoped to reproduce the issue but wasn't able to. I built the image locally, ```sh $ $env:DOCKER_BUILDKIT = 0 archery docker build --no-pull python-wheel-windows-vs2019 ``` and ran this: ``` $ archery docker run --no-pull -e SETUPTOOLS_SCM_PRETEND_VERSION=20.0.0.dev44 python-wheel-windows-vs2019 cmd ...inside container C:\>C:\Python39\python.exe Python 3.9.13 (tags/v3.9.13:6de2ca5, May 17 2022, 16:36:42) [MSC v.1929 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> from urllib.request import urlopen >>> import os >>> tzdata_path = os.path.join(os.getcwd(), "foo") >>> os.mkdir(tzdata_path) >>> tzdata_compressed = os.path.join(tzdata_path, "tzdata.tar.gz") >>> >>> with urlopen('https://data.iana.org/time-zones/tzdata-latest.tar.gz') as response: ... with open(tzdata_compressed, 'wb') as f: ... f.write(response.read()) ... 462943 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org