Skip to content

Commit

Permalink
allow installing R 4 via Conda (#498)
Browse files Browse the repository at this point in the history
* allow installing R 4 via Conda

* patch bump
  • Loading branch information
palday authored Aug 30, 2023
1 parent 305efff commit 19117e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "RCall"
uuid = "6f49c342-dc21-5d91-9882-a32aef131414"
authors = ["Douglas Bates <[email protected]>", "Randy Lai <[email protected]>", "Simon Byrne <[email protected]>"]
version = "0.13.16"
version = "0.13.17"

[deps]
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
Expand Down
2 changes: 1 addition & 1 deletion deps/build.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ try
"Pkg.build(\"RCall\")."
conda_provided_r = true
Conda.add_channel("r")
Conda.add("r-base>=3.4.0,<4") # greater than or equal to 3.4.0 AND strictly less than 4.0
Conda.add("r-base>=3.4.0,<5") # greater than or equal to 3.4.0 AND strictly less than 5.0
Rhome = joinpath(Conda.LIBDIR, "R")
libR = locate_libR(Rhome)
else
Expand Down

2 comments on commit 19117e2

@palday
Copy link
Collaborator Author

@palday palday commented on 19117e2 Aug 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/90460

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.13.17 -m "<description of version>" 19117e2644efd3327edefb7ab1c521af8514b2ad
git push origin v0.13.17

Please sign in to comment.