don't exclude python version nulls from query

This commit is contained in:
crflynn
2018-10-25 23:48:02 -04:00
parent 551ac27a39
commit 2f1a620509

View File

@@ -321,7 +321,8 @@ def get_query(date):
FROM
`the-psf.pypi.downloads{date.replace("-", "")}`
WHERE
details.python LIKE '%.%' )
details.python LIKE '%.%' OR
details.python IS NULL )
SELECT
package,
'python_major' AS category_label,