I am getting a 503 when trying to clone the orekit_Data using the download_orekit_data_curdir
---> 11 download_orekit_data_curdir()
12 setup_orekit_curdir()
14 from org.orekit.frames import FramesFactory, LocalOrbitalFrame, LOFType
File ~/ops-toolbox/.venv/lib/python3.14/site-packages/orekit_jpype/pyhelpers.py:60, in download_orekit_data_curdir(filename)
57 url = "https://gitlab.orekit.org/orekit/orekit-data/-/archive/main/orekit-data-main.zip"
58 # Download the orekit-data file and store it locally
---> 60 with urlrequest.urlopen(url) as response, open(filename, 'wb') as out_file:
61 logging.info(f"Downloading orekit data file from: {url}")
62 shutil.copyfileobj(response, out_file)
File ~/.local/share/uv/python/cpython-3.14.4-macos-aarch64-none/lib/python3.14/urllib/request.py:187, in urlopen(url, data, timeout, context)
185 else:
186 opener = _opener
--> 187 return opener.open(url, data, timeout)
...
File ~/.local/share/uv/python/cpython-3.14.4-macos-aarch64-none/lib/python3.14/urllib/request.py:611, in HTTPDefaultErrorHandler.http_error_default(self, req, fp, code, msg, hdrs)
610 def http_error_default(self, req, fp, code, msg, hdrs):
--> 611 raise HTTPError(req.full_url, code, msg, hdrs, fp)
HTTPError: HTTP Error 503: Service Unavailable