summaryrefslogtreecommitdiff
path: root/tools/download-wheels.py
Commit message (Collapse)AuthorAgeFilesLines
* MAINT, STY: Make download-wheels download source files.Charles Harris2022-05-261-11/+17
| | | | | | | | Using cibuild to build both wheels and the sdist requires that both be downloaded from the staging repo. After this change all of the whl, zip, and gzip files will be downloaded. This also reqularizes strings to conform to the Black standard.
* MAINT: Remove encoding declarations: # -*- coding: utf-8 -*-Dimitri Papadopoulos2021-10-061-1/+0
| | | | In Python 3, the default source file encoding is UTF-8.
* DOC: Improve documentation of download-wheelsCharles Harris2020-10-301-4/+25
| | | | | - List dependences - Give examples
* MAINT: Streamline download-wheels.Charles Harris2020-05-241-4/+4
| | | | | | - Makes specifying name patterns simpler - Makes name pattern reject dev versions unless specified. - Makes progress printing aligned and more concise.
* MAINT: Cleanup 'tools/download-wheels.py' (#16329)Anirudh Subramanian2020-05-221-3/+10
| | | | | | | | | | | | | | | | | * ENH: Create download dir if not present for download-wheels * TST: Add tests for download-wheels * MAINT: use exist_ok=True for os.makedirs in download-wheels Co-authored-by: Ross Barnowski <rossbar@berkeley.edu> * MAINT: Remove test for download_wheels * MAINT: Remove directory creation and error if dir not present * MAINT: Print total files download and remove err for 0 search results Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
* BUG: Fix tools/download-wheels.py.Charles Harris2020-05-181-8/+9
| | | | | `tools/download-wheels` was downloading an html page rather than the binary wheel file.
* ENH: Add tool for downloading release wheels from Anaconda.Charles Harris2020-05-161-0/+79
This is a simplified version of terryfy::wheel-uploader that has two advantages over the original: - It works with Anaconda where our wheels are now stored. - It is simplified to match the NumPY workflow.