-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Description
As Python 2 has now been formally deprecated for over a year and is no longer receiving security updates, how about this project formally deprecate and no longer allow new release to run on Python 2. This will make maintaining the code much easier.
I just finished some querys of pypi data to see how many downloads there were of zfs-tools.
Here is the of zfs-tools downloads in last n months from PyPi:
version | 1 month | 2 months | 6 months | 12 months
2.7 | 0 | 0 | 8 | 20
3.4 | 0 | 0 | 0 | 1
3.5 | 0 | 0 | 0 | 20
3.6 | 0 | 2 | 3 | 13
3.7 | 3 | 3 | 10 | 27
3.8 | 3 | 7 | 17 | 21
3.9 | 0 | 0 | 1 | 1
Note: pypi does not store version information from all downloads so these numbers are a small subset of total downloads but should still be reflective of the big picture.
FYI - Data was retrieved from Google https://console.cloud.google.com/bigquery using the following SQL:
SELECT
REGEXP_EXTRACT(details.python, r"[0-9]+\.[0-9]+") AS python_version,
COUNT(*) AS num_downloads,
FROM `the-psf.pypi.file_downloads`
WHERE
DATE(timestamp)
BETWEEN DATE_TRUNC(DATE_SUB(CURRENT_DATE(), INTERVAL 2 MONTH), MONTH)
AND CURRENT_DATE()
AND file.project = 'zfs-tools'
GROUP BY `python_version`
ORDER BY python_version
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels