-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug / question: why tomli
dependency?
#85
Comments
TOML support is required for
pytest setups test environment so it installs all missing packages (in that case tomli in case of python < 3.11) |
This is true in general, but there's no Also, Also, when one runs |
Yes, but flake8-requirements uses libtoml: So, it HAS TO be a direct dependency of flake8-requirements. It also shall be a direct dependency of flake8-pyproject. Dependencies are not transitive, every project shall define its own direct dependencies. |
Oh ha you're right it's actually used, nevermind to this. We should run |
0e3b5fc added
toml
as a dependency, which was later updated totomli
in 978e205.Since
flake8
itself doesn't integrate with TOML, why istoml
/tomli
a dependency offlake8-requirements
? It seems unused:The text was updated successfully, but these errors were encountered: