your-tools / tbump

Bump software releases
BSD 3-Clause "New" or "Revised" License
158 stars 22 forks source link

Relax dependency requirement on cli-ui #131

Closed umonaca closed 2 years ago

umonaca commented 2 years ago

According to the dependency specification ^1.2.3 means >=1.2.3 <2.0.0, but ^0.2.3 means >=0.2.3 <0.3.0. Your current version of cli-ui is 0.15.2 which is out of the scope of ^0.10.3 (which actually means >=0.10.3, <0.11.0). In order to submit your tbump package to conda-forge, I need to submit cli-ui to conda-forge as well. The CI complains on this issue.

By the way, to fix the dependency, you will need to bump a new version number of tbump to PyPI as well.

dmerejkowsky commented 2 years ago

Oh I see the problem. Let's merge that, then.