-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: [Release] Verify release-19.0.1-rc0 #45420
base: maint-19.0.1
Are you sure you want to change the base?
Conversation
@github-actions crossbow submit --group verify-rc-source --param release=19.0.1 --param rc=0 |
Revision: 36e0d50 Submitted crossbow builds: ursacomputing/crossbow @ actions-a726d6e4f7 |
Revision: apache-arrow-19.0.1-rc0 Submitted crossbow builds: ursacomputing/crossbow @ release-19.0.1-rc0-0 |
Hmm. |
We may need to backport something for it. |
It seems that the nightly wheels are also not working but the jobs are not failing now. For example for the latest nightlies Python tests are not really executed on those jobs! They seem to finish abruptly:
|
My first thought after some searching around was that IANA may have changed how they issues their TLS cert (which is still possible) and that we just need a newer version of the certifi package but the jobs appear to be pulling in recent ones. I'm seeing if I can reproduce it locally. I wonder if we may just need to update the base image. |
I had hoped to reproduce the issue but wasn't able to. I built the image locally, $ $env:DOCKER_BUILDKIT = 0
archery docker build --no-pull python-wheel-windows-vs2019 and ran this:
|
@github-actions crossbow submit wheel-windows-cp39-amd64 |
Revision: 36e0d50 Submitted crossbow builds: ursacomputing/crossbow @ actions-42cab651f2
|
It seems that https://cygwin.osuosl.org/noarch/release/tzdata/tzdata-2024a-1.tar.xz removed.
We need to use more portable URL. |
Thanks @kou. Does it make sense for us to host a copy ourselves? |
Hmm... I think that we don't want to update tzdata periodically... We may be able to use https://pypi.org/project/tzdata/ . |
That seems like it could work, ❯ python -c "import os; from importlib import resources; print(os.path.join(resources.files('tzdata'), 'zoneinfo'));"
C:\Users\Bryce\Temp\tzinfo-testing\venv\Lib\site-packages\tzdata\zoneinfo
❯ dir C:\Users\Bryce\Temp\tzinfo-testing\venv\Lib\site-packages\tzdata\zoneinfo
Directory: C:\Users\Bryce\Temp\tzinfo-testing\venv\Lib\site-packages\tzdata\zoneinfo
... |
Wow! Could you open a PR that uses https://pypi.org/project/tzdata/ ? |
Will do that in a sec once I figure out the .bat script part. |
PR over at #45425. I didn't test the whole script since it needs to be tested as part of CI. |
PR to verify Release Candidate