Skip to content

Commit

Permalink
Merge #516
Browse files Browse the repository at this point in the history
516: Require `[compat]` for stdlib dependencies r=DilumAluthge a=vchuravy

Fixes #515, by no longer treating stdlibs as special.

---

(Note: previously, this PR also added the requirement for JLL dependencies. That was removed from this PR.)

Co-authored-by: Valentin Churavy <[email protected]>
Co-authored-by: Valentin Churavy <[email protected]>
Co-authored-by: Dilum Aluthge <[email protected]>
  • Loading branch information
4 people authored Oct 26, 2023
2 parents a4bedb6 + 0974fd6 commit 3082b39
Show file tree
Hide file tree
Showing 19 changed files with 31 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "RegistryCI"
uuid = "0c95cc5f-2f7e-43fe-82dd-79dbcba86b32"
authors = ["Dilum Aluthge <[email protected]>", "Fredrik Ekre <[email protected]>", "contributors"]
version = "8.4.1"
version = "9.0.0"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Expand Down
4 changes: 2 additions & 2 deletions src/AutoMerge/guidelines.jl
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ function meets_compat_for_all_deps(working_directory::AbstractString, pkg, versi
for version_range in keys(deps)
if version in Pkg.Types.VersionRange(version_range)
for name in keys(deps[version_range])
if !is_jll_name(name) && !is_julia_stdlib(name)
@debug("Found a new (non-stdlib non-JLL) dependency: $(name)")
if !is_jll_name(name)
@debug("Found a new (non-JLL) dependency: $(name)")
dep_has_compat_with_upper_bound[name] = false
end
end
Expand Down
14 changes: 0 additions & 14 deletions src/AutoMerge/util.jl
Original file line number Diff line number Diff line change
Expand Up @@ -239,20 +239,6 @@ function comment_text_merge_now()
return result
end

is_julia_stdlib(name) = name in julia_stdlib_list()

function julia_stdlib_list()
stdlib_list = readdir(Pkg.Types.stdlib_dir())
# Before Julia v1.6 Artifacts.jl isn't a standard library, but
# we want to include it because JLL packages depend on the empty
# placeholder https://github.com/JuliaPackaging/Artifacts.jl
# in older versions for compatibility.
if VERSION < v"1.6.0"
push!(stdlib_list, "Artifacts")
end
return stdlib_list
end

function now_utc()
utc = TimeZones.tz"UTC"
return Dates.now(utc)
Expand Down
1 change: 1 addition & 0 deletions test/templates/feature_1/R/Requires/Compat.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[1]
julia = "1"
UUIDs = "1"
1 change: 1 addition & 0 deletions test/templates/feature_2/R/Requires/Compat.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[1-2]
julia = "1"
UUIDs = "1"
1 change: 1 addition & 0 deletions test/templates/feature_3/R/Req/Compat.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[1]
julia = "1"
UUIDs = "1"
1 change: 1 addition & 0 deletions test/templates/feature_4/R/Requires/Compat.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[1-2]
julia = "1"
UUIDs = "1"
1 change: 1 addition & 0 deletions test/templates/feature_5/R/Requires/Compat.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[1-2]
julia = "1"
UUIDs = "1"
4 changes: 4 additions & 0 deletions test/templates/feature_5/R/ResettableStacks/Compat.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
["0-0.4"]
julia = "0.7-1"
Random = "0.7-1"
Test = "0.7-1"

["0.5-1"]
julia = "1"
Random = "1"
Test = "1"
2 changes: 2 additions & 0 deletions test/templates/feature_6/jll/H/HelloWorldC_jll/Compat.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
[1]
julia = "1.3.0-1"
Libdl = "1.3.0-1"
Pkg = "1.3.0-1"
4 changes: 4 additions & 0 deletions test/templates/feature_7/jll/H/HelloWorldC_jll/Compat.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
["1-1.0.6"]
julia = "1.3.0-1"
Libdl = "1.3.0-1"
Pkg = "1.3.0-1"

["1.0.8-1"]
julia = "1"
Libdl = "1"
Pkg = "1"
2 changes: 2 additions & 0 deletions test/templates/feature_8/jll/H/HelloWorldC_jll/Compat.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
[1]
julia = "1.3.0-1"
LinearAlgebra = "1.3.0-1"
Pkg = "1.3.0-1"
1 change: 1 addition & 0 deletions test/templates/master_2/R/Requires/Compat.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[1]
julia = "1"
UUIDs = "1"
1 change: 1 addition & 0 deletions test/templates/master_3/R/Requires/Compat.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[1]
julia = "1"
UUIDs = "1"
4 changes: 4 additions & 0 deletions test/templates/master_3/R/ResettableStacks/Compat.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
["0-0.4"]
julia = "0.7-1"
Random = "0.7-1"
Test = "0.7-1"

["0.5-1"]
julia = "1"
Random = "1"
Test = "1"
2 changes: 2 additions & 0 deletions test/templates/master_4/jll/H/HelloWorldC_jll/Compat.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
[1]
julia = "1.3.0-1"
Libdl = "1.3.0-1"
Pkg = "1.3.0-1"
1 change: 1 addition & 0 deletions test/templates/public_2/R/Req/Compat.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[1-2]
julia = "1"
UUIDs = "1"
1 change: 1 addition & 0 deletions test/templates/public_3/R/Requires/Compat.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[1-2]
julia = "1"
UUIDs = "1"
1 change: 1 addition & 0 deletions test/templates/public_4/R/Requires/Compat.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[0-1]
julia = "1"
UUIDs = "1"

2 comments on commit 3082b39

@DilumAluthge
Copy link
Member

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/94135

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 v9.0.0 -m "<description of version>" 3082b394451a7117be25ac2bf13f7ec1f893576d
git push origin v9.0.0

Please sign in to comment.