-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
Added script to fetch wheels [ci skip] #20928
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Trying to automate as much of the release process as possible. |
[ci skip]
Merging later today if there are no objections. |
thanks @TomAugspurger |
@@ -0,0 +1,44 @@ | |||
"""Fetch wheels from wheels.scipy.org for a pandas version.""" | |||
import argparse |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
might need
#!/usr/bin/env python
# -*- coding: utf-8 -*-
dest.mkdir(exist_ok=True) | ||
|
||
files = [x for x in root.xpath("//a/text()") | ||
if x.startswith(f'pandas-{version}') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this only works on >= 3.6 (which is ok), but the linter is running this.
[ci skip]