You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Installing the package version 1.0.8 from PyPI does not generate the module directory, causing a ModuleNotFoundError even after installation.
To Reproduce
Remove any current installed version of random-word: pip uninstall random-word
Install the package via pip: pip install random-word (pip install random-word==1.0.8)
Try to import the module in python: import random_word
Expected behavior
The module should import correctly after installation.
Environment:
OS: Arch Linux
Python 3.10
Additional context
Noticed on reddit. Current workaround is to install random-word==1.0.7.
The current build also seems to place tests and utils under site-packages, possibly hinting to a wrong relative directory being used.
The text was updated successfully, but these errors were encountered:
Describe the bug
Installing the package version 1.0.8 from PyPI does not generate the module directory, causing a
ModuleNotFoundError
even after installation.To Reproduce
random-word
:pip uninstall random-word
pip
:pip install random-word
(pip install random-word==1.0.8
)import random_word
Expected behavior
The module should import correctly after installation.
Environment:
Additional context
Noticed on reddit. Current workaround is to install
random-word==1.0.7
.The current build also seems to place
tests
andutils
undersite-packages
, possibly hinting to a wrong relative directory being used.The text was updated successfully, but these errors were encountered: