nautobot / nautobot-docker-compose

Docker Compose for Nautobot
47 stars 43 forks source link

Add toml dependency #90

Closed james-m-henderson closed 2 months ago

james-m-henderson commented 2 months ago

Fixes the following build bug that happens when following README instructions:

tasks.py", line 6, in import toml ModuleNotFoundError: No module named 'toml'

This problem fixed by nautobot in a potentially better way:

https://github.com/nautobot/nautobot/pull/607/files

james-m-henderson commented 2 months ago

I am going to close this for now. The root issue seems to be that zsh doesn't automatically update the path when you enter poetry shell, you need to run the "rehash" command if you want to ensure that executables like "invoke" don't get pulled from your system python environment. I also realized that toml already is a dependency, so there shouldn't be a need to include it.