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
Hello! A fresh install with poetry (python package manager) is giving an error of ModuleNotFoundError when the function cfg.load() is called.
Somehow the module tzlocal is not getting installed?
Is this with how cfg_load declares its deps? or is it on the mpu dep side?
Trace:
Traceback (most recent call last):
File "/home/martin/Documentos/Programming/Python/Projetos/test-project/test_project/__init__.py", line 6, in <module>
cfg.load("/home/martin/Documentos/Programming/Python/Projetos/steam-api-explore/cfg-template.yaml")
File "/home/martin/Documentos/PythonEnvironments/steam-api-explore-oyX2e_1N-py3.8/lib/python3.8/site-packages/cfg_load/__init__.py", line 66, in load
meta = mpu.io.get_file_meta(filepath)
File "/home/martin/Documentos/PythonEnvironments/steam-api-explore-oyX2e_1N-py3.8/lib/python3.8/site-packages/mpu/io.py", line 366, in get_file_meta
meta["last_access_datetime"] = get_access_datetime(filepath)
File "/home/martin/Documentos/PythonEnvironments/steam-api-explore-oyX2e_1N-py3.8/lib/python3.8/site-packages/mpu/io.py", line 344, in get_access_datetime
import tzlocal
ModuleNotFoundError: No module named 'tzlocal'
I have included a minimal pyproject for you to test.
Hello! A fresh install with poetry (python package manager) is giving an error of
ModuleNotFoundError
when the functioncfg.load()
is called.Somehow the module
tzlocal
is not getting installed?Is this with how cfg_load declares its deps? or is it on the mpu dep side?
Trace:
I have included a minimal pyproject for you to test.
pyproject.toml
Sample file:
The text was updated successfully, but these errors were encountered: