Skip to content

Commit a2afd1e

Browse files
disable init_certificate_authority on julia 1.9 and later
1 parent 873a1f6 commit a2afd1e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/NCDatasets.jl

+4-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@ using NetworkOptions
2828
using Printf
2929

3030
function __init__()
31-
init_certificate_authority()
31+
# https://github.com/JuliaPackaging/Yggdrasil/pull/5319#issuecomment-1221042734
32+
if VERSION < v"1.9"
33+
init_certificate_authority()
34+
end
3235
end
3336

3437
const default_timeunits = "days since 1900-00-00 00:00:00"

0 commit comments

Comments
 (0)