Replies: 4 comments 4 replies
-
Here are some data from the 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; |
Beta Was this translation helpful? Give feedback.
2 replies
-
another options is to relex Python requirements and remove abi3 features from pyo3 so at least cp39/cp310 uses (with cargo installed) can install from sdist |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thank you @trim21, this proposal has been implemented in #5347 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
we drop py<3.11 support in #4625 (reply in thread) because we don't have enough pypi space for wheel, and because of the stable API we used, we have to choose cp311.
Now we have more pypi spaces, I proposal we add these versions back without abi3 flags.
For python>=3.11, only abi3 wheel are provided.
for this proposal, what we need:
pyo3
abi3 feature to top-level feature in py binding cargo.Beta Was this translation helpful? Give feedback.
All reactions