calgo-lab / green-db

The monorepo that powers the GreenDB.
https://calgo-lab.github.io/green-db/
22 stars 2 forks source link

Update the poetry dependencies along all modules #125

Closed itrajanovska closed 1 year ago

itrajanovska commented 1 year ago

Black needs an update, and with that the rest of the packages when locking the file,

BigDatalex commented 1 year ago

A note about defining a dev dependencies group from: https://python-poetry.org/docs/master/managing-dependencies/

The proper way to define a dev dependencies group since Poetry 1.2.0 is the following:

[tool.poetry.group.dev.dependencies]
pytest = "^6.0.0"
pytest-mock = "*"

Poetry will slowly transition away from the dev-dependencies notation which will soon be deprecated, so it’s advised to migrate your existing development dependencies to the new group notation.

Maybe this can be addressed as well with a PR solving this issue.