Error with PythonCall.jl and SimpleITK on Julia 1.9 but works on beta (1.10)

When I try to load SimpleITK via PythonCall.jl on windows, I am running into a new error. This is not a problem on Mac or Linux. This does not error when working on the current beta (1.10). I also have a public link here for this process with GitHub actions for one of my packages. Any idea what changed between 1.9 and 1.10 and how can I fix this to make it work on 1.9 also?

begin
	using Pkg; Pkg.activate(temp = true)
	Pkg.add("PythonCall")
	Pkg.add("CondaPkg")

	using CondaPkg
	CondaPkg.add("SimpleITK", resolve=false)
	CondaPkg.add("numpy")
end
begin
	using PythonCall
	sitk = pyimport("SimpleITK")
	np = pyimport("numpy")
end

Python: ImportError: DLL load failed while importing _SimpleITK: The specified procedure could not be found.

pythrow()@err.jl:94
errcheck@err.jl:10[inlined]
pyimport(::String)@import.jl:11
top-level scope@Local: 3

My wild guess is that it is one of Julia’s core dependencies and they did not match one of Python’s core dependencies. With 1.10 that may have changed so that they are now synchronized.