-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
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
BUG: packaging error - "pkgdemo" #322
Comments
Seems like a rookie mistake but this (not replacing |
Define a symbol with the package name and then use here instead of verbatim text. |
Use the name as defined here: Line 9 in a3f9718
|
In [1]: from importlib.metadata import version
In [2]: version("hklpy")
Out[2]: '1.1.0rc1' |
With this change: In [1]: from importlib.metadata import version
In [2]: version("hklpy")
Out[2]: '1.1.0rc2.dev1+g1d2a8cd' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
V1.1.0rc1 PyPA source dist published on PyPI but conda-forge recipe fails with exception
importlib.metadata.PackageNotFoundError: No package metadata was found for pkgdemo
. Here is the problem:hklpy/hkl/__init__.py
Line 25 in a3f9718
The text
pkgdemo
should be replaced by this package's name:hkl
.The text was updated successfully, but these errors were encountered: