Project

General

Profile

Feature #17013

Updated by Peter Amstutz over 3 years ago

https://github.com/arvados/arvados/pull/73 

 Related, I noticed this code in run_upload_packages.py 

 <pre> 
         # NOTE: If we ever start uploading Python 3 packages, we'll need to 
         # figure out some way to adapt cmd to match.    It might be easiest 
         # to give all our setup.py files the executable bit, and run that 
         # directly. 
         # We also must run `sdist` before `upload`: `upload` uploads any 
         # distributions previously generated in the command.    It doesn't 
         # know how to upload distributions already on disk.    We write the 
         # result to a dedicated directory to avoid interfering with our 
         # timestamp tracking. 
         cmd = ['python2.7', 'setup.py'] 
 </pre>

Back