PyCall Fails to Build

PyCall is attempting to access a file at main/win-64
The file is called: https://repo.anaconda.com/pkgs/main/win-64/current_repodata.json
However, if you navigate to the page, the json file does not exist. There is a repodata.json, but not a current_repodata.json.
Is there some way to update this?

Here is my code:
import Pkg
Pkg.add(“PyCall”)
Pkg.build(“PyCall”)
import PyCall

numpy = PyCall.pyimport(“numpy”)

function one(x):
return numpy.sin(x) ** 2 + numpy.cos(x) ** 2

two(x) = one(1) + one(2)

Image of the errors: