GH-49901: [R] Bump minimum supported R version to 4.2 now that 4.6 is out#49929
Open
thisisnic wants to merge 6 commits intoapache:mainfrom
Open
GH-49901: [R] Bump minimum supported R version to 4.2 now that 4.6 is out#49929thisisnic wants to merge 6 commits intoapache:mainfrom
thisisnic wants to merge 6 commits intoapache:mainfrom
Conversation
thisisnic
commented
May 5, 2026
| run: | | ||
| # RTools 40 uses GCC 8.x which does not support C++20 chrono timezones, | ||
| # so Arrow uses the vendored date library which requires tzdata | ||
| # Download tzdata in case the vendored date library is used for timezones |
Member
Author
There was a problem hiding this comment.
Does the RTools bump and associated GCC version increase means that this is no longer needed?
thisisnic
commented
May 5, 2026
Comment on lines
-280
to
-281
| {% set r_release = {"ver": "4.2", "rt" : "42"} %} | ||
| {% set r_oldrel = {"ver": "4.1", "rt" : "40"} %} |
Member
Author
There was a problem hiding this comment.
These variables are never used anywhere
Member
Author
|
@github-actions crossbow submit -g r |
|
Revision: 682fe0a Submitted crossbow builds: ursacomputing/crossbow @ actions-8480702cfb |
thisisnic
commented
May 5, 2026
Comment on lines
+26
to
+36
| # Ensure CA certificates are available for pacman (Rtools42+ may not bundle them) | ||
| if [ ! -f /usr/ssl/certs/ca-bundle.crt ]; then | ||
| mkdir -p /usr/ssl/certs | ||
| for src in /c/rtools45/usr/ssl/certs/ca-bundle.crt \ | ||
| "/c/Program Files/Git/mingw64/etc/ssl/certs/ca-bundle.crt"; do | ||
| if [ -f "$src" ]; then | ||
| cp "$src" /usr/ssl/certs/ca-bundle.crt | ||
| break | ||
| fi | ||
| done | ||
| fi |
Member
Author
There was a problem hiding this comment.
Claude addition as job fails if we don't do this - unsure if best approach but looks like a CI-specific failure and will see if it makes the CI pass.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Rationale for this change
We don't need to support R 4.1 as a new version is out
What changes are included in this PR?
Bump minimum supported version to 4.2
Are these changes tested?
In CI, sure
Are there any user-facing changes?
Nope