python-trio / trio

Trio – a friendly Python library for async concurrency and I/O
https://trio.readthedocs.io
Other
6.21k stars 343 forks source link

Bump dependencies from commit d4268e #3068

Closed github-actions[bot] closed 3 months ago

A5rocks commented 3 months ago

Updating for uv 0.3 (mainly just checking theres no regressions in the output)

A5rocks commented 3 months ago

Only regression is in terms of simplification:

-colorama==0.4.6 ; sys_platform == 'win32' or (implementation_name == 'cpython' and platform_system == 'Windows')
+colorama==0.4.6 ; (implementation_name != 'cpython' and sys_platform == 'win32') or (platform_system != 'Windows' and sys_platform == 'win32') or (implementation_name == 'cpython' and platform_system == 'Windows')
codecov[bot] commented 3 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 99.63%. Comparing base (d4268e7) to head (4d18556). Report is 221 commits behind head on main.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## main #3068 +/- ## ======================================== Coverage 99.63% 99.63% ======================================== Files 121 121 Lines 17839 18047 +208 Branches 3206 3313 +107 ======================================== + Hits 17774 17982 +208 Misses 46 46 Partials 19 19 ``` [see 1 file with indirect coverage changes](https://app.codecov.io/gh/python-trio/trio/pull/3068/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=python-trio)

🚨 Try these New Features:

A5rocks commented 3 months ago

Honestly, the regression is no big deal. I've reported it and if it gets fixed then nice. Also we should have these automatically apply changes from uv (just like with black currently).