Merge pull request #12671 from freqtrade/dependabot/pip/develop/humanize-4.15.0

chore(deps): bump humanize from 4.14.0 to 4.15.0
pull/12674/head
Matthias 4 months ago committed by GitHub
commit 383b305b74
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -14,7 +14,7 @@ SQLAlchemy==2.0.45
python-telegram-bot==22.5
# can't be hard-pinned due to telegram-bot pinning httpx with ~
httpx>=0.24.1
humanize==4.14.0
humanize==4.15.0
cachetools==6.2.4
requests==2.32.5
urllib3==2.6.2

@ -82,7 +82,7 @@ def test_dt_humanize() -> None:
assert dt_humanize_delta(dt_now() - timedelta(minutes=50)) == "50 minutes ago"
assert dt_humanize_delta(dt_now() - timedelta(hours=16)) == "16 hours ago"
assert dt_humanize_delta(dt_now() - timedelta(hours=16, minutes=30)) == "16 hours ago"
assert dt_humanize_delta(dt_now() - timedelta(days=16, hours=10, minutes=25)) == "16 days ago"
assert dt_humanize_delta(dt_now() - timedelta(days=16, hours=10, minutes=25)) == "a month ago"
assert dt_humanize_delta(dt_now() - timedelta(minutes=50)) == "50 minutes ago"

Loading…
Cancel
Save