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
can't you put all dependencies in your pyproject.toml? You can provide production and optional dependencies (like for testings) and use "tags" to decide what to install. Here is an example.
In your case, requests is a dependency, while responses is a dev dependency, so you'll list it below project.optional-dependencies.
If you do it, we can remove the pip install -r requirements.txt step and just pip install -e '.[all]'.
Originally posted by @palazzem in #109 (comment)
The text was updated successfully, but these errors were encountered: