summary refs log tree commit diff
path: root/changelog.d/14221.misc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 1.70.0rc1Erik Johnston2022-10-191-1/+0
|
* Fix `track_memory_usage` on poetry-core 1.3.x installations (#14221)David Robertson2022-10-181-0/+1
* Fix `track_memory_usage` on poetry-core 1.3.x installations The same kind of problem as discussed in #14085: 1. we defined an extra with an underscore 2. we look it up at runtime with an underscore 3. but poetry-core 1.3.x. installs it with a dash, causing (2) to fail. Fix by using a dash everywhere. * Changelog