If anyone is curious about the breakdown of versions, I used the following query:
SELECT REGEXP_EXTRACT(details.python, r"^([^\.]+\.[^\.]+\.[^\.]+)") as python_version, COUNT(*) as download_count, FROM TABLE_DATE_RANGE( [the-psf:pypi.downloads], DATE_ADD(CURRENT_TIMESTAMP(), -2, "week"), CURRENT_TIMESTAMP() ) WHERE LOWER(file.project) = 'django' GROUP BY python_version, ORDER BY download_count DESC LIMIT 100 And got these for the top 9: Row python_version download_count 1 3.5.2 75888 2 2.7.12 65879 3 2.7.6 63925 4 null 56744 5 2.7.9 40378 6 2.7.10 25213 7 3.4.3 23223 8 2.7.13 20657 9 2.7.5 17256 (That's an HTML table, no clue what happens if you use a plaintext email client) Alex On Wed, Jan 4, 2017 at 2:13 PM, Martin Koistinen <mkoisti...@gmail.com> wrote: > I think this is a pretty solid guess. Bear in mind this was a direct > install from Python.org. > > The important thing here is, this demonstrates that we cannot just assume > that all Python 3 installs have a "fast" PBKDF2 implementation =/ > > On Wednesday, January 4, 2017 at 11:33:17 AM UTC-5, Tobias McNulty wrote: > >> ... >> > Martin, is it possible your version of Python 3 is not linked against >> OpenSSL and hence is missing the fast version of pbkdf2_hmac? I haven't had >> a chance to try your benchmark yet, but in a quick test I don't see any >> difference between Python 3.5.2 and Python 2.7.12 on a Mac. >> >> Tobias >> > > > > -- > You received this message because you are subscribed to the Google Groups > "Django developers (Contributions to Django itself)" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to django-developers+unsubscr...@googlegroups.com. > To post to this group, send email to django-developers@googlegroups.com. > Visit this group at https://groups.google.com/group/django-developers. > To view this discussion on the web visit https://groups.google.com/d/ > msgid/django-developers/568d57ba-81c3-4b52-9fd4- > 99f3c036b6bc%40googlegroups.com > <https://groups.google.com/d/msgid/django-developers/568d57ba-81c3-4b52-9fd4-99f3c036b6bc%40googlegroups.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > -- "I disapprove of what you say, but I will defend to the death your right to say it." -- Evelyn Beatrice Hall (summarizing Voltaire) "The people's good is the highest law." -- Cicero GPG Key fingerprint: D1B3 ADC0 E023 8CA6 -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-developers+unsubscr...@googlegroups.com. To post to this group, send email to django-developers@googlegroups.com. Visit this group at https://groups.google.com/group/django-developers. To view this discussion on the web visit https://groups.google.com/d/msgid/django-developers/CAFRnB2XPoSwZT01W8sGA%3DpgzVBKq7bNCkb2Z8v_9ADxrzh2ENw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.