File tree Expand file tree Collapse file tree
python/ruff-ecosystem/ruff_ecosystem Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -531,8 +531,7 @@ jobs:
531531 persist-credentials : false
532532 - uses : astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
533533 with :
534- # TODO: figure out why `ruff-ecosystem` crashes on Python 3.14
535- python-version : " 3.13"
534+ python-version : ${{ env.PYTHON_VERSION }}
536535 activate-environment : true
537536
538537 - uses : actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
Original file line number Diff line number Diff line change @@ -87,7 +87,8 @@ def entrypoint():
8787 )
8888
8989 with cache_context as cache :
90- loop = asyncio .get_event_loop ()
90+ loop = asyncio .new_event_loop ()
91+ asyncio .set_event_loop (loop )
9192 main_task = asyncio .ensure_future (
9293 main (
9394 command = RuffCommand (args .ruff_command ),
Original file line number Diff line number Diff line change @@ -528,7 +528,8 @@ async def limited_parallelism(coroutine: T) -> T:
528528 else :
529529 logging .basicConfig (level = logging .INFO )
530530
531- loop = asyncio .get_event_loop ()
531+ loop = asyncio .new_event_loop ()
532+ asyncio .set_event_loop (loop )
532533 if args .checkouts :
533534 args .checkouts .mkdir (exist_ok = True , parents = True )
534535 main_task = asyncio .ensure_future (
You can’t perform that action at this time.
0 commit comments