Skip to content

Commit

Permalink
disable init_certificate_authority on julia 1.9 and later
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander-Barth committed Aug 21, 2022
1 parent 873a1f6 commit a2afd1e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/NCDatasets.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ using NetworkOptions
using Printf

function __init__()
init_certificate_authority()
# https://github.com/JuliaPackaging/Yggdrasil/pull/5319#issuecomment-1221042734
if VERSION < v"1.9"
init_certificate_authority()
end
end

const default_timeunits = "days since 1900-00-00 00:00:00"
Expand Down

2 comments on commit a2afd1e

@Alexander-Barth
Copy link
Owner Author

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

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.12.7 -m "<description of version>" a2afd1e0d3b1d63a176f9c43aeaa4f0712aa2c60
git push origin v0.12.7

Please sign in to comment.