Abstract
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.. | |
Title: Collecting Information about pip's dependency resolution | |
Version: $Revision$ | |
Last-Modified: $Date$ | |
Author: Pradyun S. Gedam <[email protected]>, | |
Status: Draft | |
Type: Informational | |
Content-Type: text/x-rst | |
Created: 05-May-2016 | |
Post-History: 15-May-2016 |
- Name: Pradyun S. Gedam
- Email: [[email protected]][mailto-email]
- Github: [pradyunsg][github-profile]
- University: [VIT University, Vellore, India][vit-homepage]
- Course: Bachelor of Technology in Computer Science and Engineering
- Course Term: 2016/17 - 2019/20 (4 Year)
- Timezone: IST (GMT +5:30)
- GSoC Blog RSS Feed URL:
I hereby claim:
- I am pradyunsg on github.
- I am pradyunsg (https://keybase.io/pradyunsg) on keybase.
- I have a public key whose fingerprint is 1A43 3BF0 F622 C12B 41EF 3A7A DA17 C4B2 9CB3 2E4B
To claim this, I am signing this object:
There's 2 files in this Gist -- the query and the 16000 JSON records (BigQuery download limit) of the result of that executing that query.
It used >500 GB of the free 1 TB quota, so I can't really run this again. :)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tests/integrations/test_conferences.py::test_conferences | |
/Users/pradyunsg/Projects/junction/junction/profiles/migrations/0001_initial.py:25: RemovedInDjango20Warning: on_delete will be a required arg for OneToOneField in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete | |
('user', models.OneToOneField(to=settings.AUTH_USER_MODEL)), | |
tests/integrations/test_conferences.py::test_conferences | |
/Users/pradyunsg/Projects/junction/junction/conferences/migrations/0014_conferencesettings.py:63: RemovedInDjango20Warning: on_delete will be a required arg for ForeignKey in Django 2.0. Set it to models.CASCADE on models and in existing migrations if you want to maintain the current default behavior. See https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.on_delete | |
('conference', models.ForeignKey(to='confe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
COUNT(*) as count | |
FROM | |
`the-psf.pypi.file_downloads` | |
WHERE | |
DATE(timestamp) between DATE "2020-04-01" and DATE "2020-04-15" | |
-- This query will process 18.3 GB when run. |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2020-05-08T17:44:53,092 Non-user install because user site-packages disabled | |
2020-05-08T17:44:53,102 Created temporary directory: /private/var/folders/4d/bt0_xfx56bjfmmt2bv3r5_qh0000gn/T/pip-ephem-wheel-cache-ql7y4i0p | |
2020-05-08T17:44:53,103 Created temporary directory: /private/var/folders/4d/bt0_xfx56bjfmmt2bv3r5_qh0000gn/T/pip-req-tracker-ch141f_5 | |
2020-05-08T17:44:53,103 Initialized build tracking at /private/var/folders/4d/bt0_xfx56bjfmmt2bv3r5_qh0000gn/T/pip-req-tracker-ch141f_5 | |
2020-05-08T17:44:53,103 Created build tracker: /private/var/folders/4d/bt0_xfx56bjfmmt2bv3r5_qh0000gn/T/pip-req-tracker-ch141f_5 | |
2020-05-08T17:44:53,103 Entered build tracker: /private/var/folders/4d/bt0_xfx56bjfmmt2bv3r5_qh0000gn/T/pip-req-tracker-ch141f_5 | |
2020-05-08T17:44:53,103 Created temporary directory: /private/var/folders/4d/bt0_xfx56bjfmmt2bv3r5_qh0000gn/T/pip-install-go6b3ifp | |
2020-05-08T17:44:53,178 1 location(s) to search for versions of alembic: | |
2020-05-08T17:44:53,178 * https://pypi.org/simple/alembic/ | |
2020-05-08T17: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function commands_to_test() { | |
pip install oslo.utils==1.4.0 | |
} | |
if [ "$VIRTUAL_ENV" ]; then | |
echo "Please run 'deactivate' and try again." | |
exit 1 | |
fi | |
# Make a virtualenv and use that. |
OlderNewer