GitHub user Xuanwo added a comment to the discussion: Add python39/310 support back
Here are some data from the `bigquery-public-data.pypi.file_downloads`: ```sql SELECT REGEXP_EXTRACT(details.python, r'^([0-9]+\.[0-9]+)') as python_version, COUNT(*) as download_count FROM `bigquery-public-data.pypi.file_downloads` WHERE file.project = 'opendal' AND timestamp >= TIMESTAMP(DATE_SUB(CURRENT_DATE(), INTERVAL 6 MONTH)) AND details.python IS NOT NULL GROUP BY python_version ORDER BY download_count DESC; ```  GitHub link: https://github.com/apache/opendal/discussions/5335#discussioncomment-11287106 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
