Kaizen Today I Learned by Ville Säävuori

Posts tagged poetry

Optional Dependencies With Poetry

Some Python dependencies require build tools which can be problematic when running inside Docker or CI environment. Often these packages are also needed only in development or production so having them as optional dependencies can be really useful. I just learned that Poetry can do this. First, install your dependency with --optional flag:

· Read the full article →