We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It's a very common attribute, which I missed today.
https://peps.python.org/pep-0396/ https://peps.python.org/pep-0008/
The text was updated successfully, but these errors were encountered:
As a workaround I did pip show cppimport | awk '/Version:/{print $2}.
pip show cppimport | awk '/Version:/{print $2}
Sorry, something went wrong.
Yeah, reasonable request! I made a PR (#78). Once I confirm that everything is good to go, I'll push a release.
For future reference, in Python 3.8+, you should be able to get the version of any package with:
>>> from importlib.metadata import version >>> version("cppimport") '22.7.17.post1+g3d3de85.d20220802'
Thanks, that was quick! (And nice workaround, TIL.)
I just pushed a release to pypi!
No branches or pull requests
It's a very common attribute, which I missed today.
https://peps.python.org/pep-0396/
https://peps.python.org/pep-0008/
The text was updated successfully, but these errors were encountered: