Closed wtracyliu closed 3 years ago
@wtracyliu Is this the reason I am not able to upgrade to sentry 0.17 ?
@s-agawane I think so, actually after pip install my forked version ,I've upgraded sentry to 0.19.1. I've never used poetry before, so I looked up in the documentation, I think that's the problem.
Yes, this fixes the problem because ^0.16.5
locks to versions in the 0.16.x
releases and the resolution blocks a manual installation of 0.17.0
and above to comply with the package constrains. @danielwelch just a friendly ping for this 🙏
Sorry for the delay on this @wtracyliu.
Merging in fix. Will do a build to pypi as well.
pr to solve #9
according the documentation of poetry https://python-poetry.org/docs/dependency-specification/ , ^0.16.5 means >=0.16.5 <0.17.0 , so I think it's better to change ^0.16.5 to >=0.16.5