File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## v0.1.22 (2025-10-08)
4+ * Bug fixes.
5+
36## v0.1.21 (2025-10-08)
47* Improve OpenSSL compatibility - if Python has OpenSSL <3.5, restrict to Julia <1.12.
58
Original file line number Diff line number Diff line change 11[project ]
22name = " juliapkg"
3- version = " 0.1.21 "
3+ version = " 0.1.22 "
44description = " Julia version manager and package manager"
55authors = [{ name = " Christopher Doris" }]
66dependencies = [
Original file line number Diff line number Diff line change @@ -348,7 +348,8 @@ def find_requirements():
348348 ):
349349 oc , jc = openssl_compat ()
350350 dep ["version" ][fn ] = oc
351- compats [fn + " (OpenSSL_jll)" ] = Compat .parse (jc )
351+ if jc is not None :
352+ compats [fn + " (OpenSSL_jll)" ] = Compat .parse (jc )
352353 c = deps .get ("julia" )
353354 if c is not None :
354355 compats [fn ] = Compat .parse (c )
You can’t perform that action at this time.
0 commit comments