poetry not installing dependencies from install_requires
See original GitHub issue- I am on the latest Poetry version.
- I have searched the issues of this repo and believe that this is not a duplicate.
- If an exception occurs when executing a command, I executed it again in debug mode (
-vvv
option).
- OS version and name: osx 10.15.7
- Poetry version: 1.1.11
- Link of a Gist with the contents of your pyproject.toml file: https://github.com/pytest-dev/pytest-selenium/pull/278
Issue
I expect poetry install
to install my projects dependencies, as outlined by install_requires
in setup.cfg
.
It didn’t work when it was defined in setup.py
either.
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Dependency issue when poetry used in private ... - GitHub
Dependency issue when poetry used in private dependency, 'install_requires' must be a string or list of strings #1101.
Read more >How to write a minimally working pyproject.toml file that can ...
my question differ because I ask for a human-written pyproject.toml. First, the pyproject.toml file is always "human-writable".
Read more >Commands | Documentation | Poetry - Python dependency ...
To only install the project itself with no dependencies, use the --only-root flag. poetry install --only-root. See Dependency groups for more information about ......
Read more >Python packaging and dependency management using poetry
Install dependencies and create virtual environment ... Poetry uses only one file ( pyproject.toml ) to manage your projects dependencies. In other words,...
Read more >Managing Python Dependencies with Poetry
Dependency management and packaging tools for your Python project using poetry. ... If poetry is not already installed on your machine, you can...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
The only way to do it, is to maintain dependencies and metadata twice. Mixing is not possible.
Ok, I guess I walked into that one, haha.
Thanks! 🙏