Internally we use smart_open (smart-open · PyPI) to download zips. Can you try this script to see if it works?
import smart_open
with smart_open.open("https://git.selflab.co/factory/-/archive/master/factory-master.zip?private_token=xxxx", 'rb',transport_params=None) as zip_file:
print(len(zip_file.read()))
Ray caches the zip file by URL and won’t always download the latest zip. I think if you always want the latest commit, you can fetch the commit hash in the driver script and use that hash in the url to keep it consistent. You may also be able to add your access token in the url like this: