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
when installing this package from a wheel, doing import stsci.tools fails. However, importing tools succeeds.
import stsci.tools
tools
❯ pip install stsci.tools ❯ python -c "import stsci.tools"
❯ pip install stsci.tools ❯ python -c "import stsci.tools" Traceback (most recent call last): File "<string>", line 1, in <module> ModuleNotFoundError: No module named 'stsci.tools' ❯ python -c "import tools"
stsci.tools
python -m build .
pip install stsci.tools
python -c "import stsci.tools"
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Description
when installing this package from a wheel, doing
import stsci.tools
fails. However, importingtools
succeeds.Expected behavior
❯ pip install stsci.tools ❯ python -c "import stsci.tools"
Actual behavior
Steps to Reproduce
stsci.tools
from a wheel (build one withpython -m build .
or install from PyPIpip install stsci.tools
)move to a directory away from the source codestsci.tools
:python -c "import stsci.tools"
System Details
The text was updated successfully, but these errors were encountered: