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
This approach must be improved because there is no need to have build dependencies installed at runtime. On the packaged version of the tool this approach generates issues.
You can solve this in two manners:
Create two separated requirements files: one for build deps requirements-dev.txt (pytest and flake8) and another one for runtime deps requirements.txt (the remaining deps in requirements.txt) and change setup.cfg according to this doc by specifying the requirement file for the build system and the one for the runtime system.
setup.cfg calls requirements.txt that mixes both runtime and build dependencies.
This approach must be improved because there is no need to have build dependencies installed at runtime. On the packaged version of the tool this approach generates issues.
You can solve this in two manners:
requirements-dev.txt
(pytest and flake8) and another one for runtime depsrequirements.txt
(the remaining deps in requirements.txt) and change setup.cfg according to this doc by specifying the requirement file for the build system and the one for the runtime system.Ref: BlackArch/blackarch#3940
The text was updated successfully, but these errors were encountered: