Py3DNS is a dependancy generated in poetry.lock even if not required
Bug #2024461 reported by
Pavel Dedík
This bug affects 2 people
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
dkimpy |
Confirmed
|
Low
|
Unassigned |
Bug Description
Easy to reproduce:
```
poetry add dkimpy==1.0.5
```
That command adds dnspython as a dependency to poetry.lock, while:
```
poetry add dkimpy==1.1.4
```
Adds py3dns. And that happens even if dnspython is installed.
Thus, py3dns remains unused (and causes issues on mac - https:/
It would be nice if it was possible to not install py3dns (not have it generated in poetry.lock) and use dnspython instead. This could be achieved via extras.
To post a comment you must log in.
Is py3DNS installed? If so, that's the expected behavior (but I agree it's not ideal). If not, then I think it's a poetry bug.