mirror of https://github.com/astral-sh/ruff
[`ruff-ecosystem`] Fix CLI crash on Python 3.14 (#21092)
This commit is contained in:
parent
5139f76d1f
commit
980b4c55b2
|
|
@ -531,8 +531,7 @@ jobs:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
|
- uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
|
||||||
with:
|
with:
|
||||||
# TODO: figure out why `ruff-ecosystem` crashes on Python 3.14
|
python-version: ${{ env.PYTHON_VERSION }}
|
||||||
python-version: "3.13"
|
|
||||||
activate-environment: true
|
activate-environment: true
|
||||||
|
|
||||||
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
|
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
|
||||||
|
|
|
||||||
|
|
@ -87,7 +87,8 @@ def entrypoint():
|
||||||
)
|
)
|
||||||
|
|
||||||
with cache_context as cache:
|
with cache_context as cache:
|
||||||
loop = asyncio.get_event_loop()
|
loop = asyncio.new_event_loop()
|
||||||
|
asyncio.set_event_loop(loop)
|
||||||
main_task = asyncio.ensure_future(
|
main_task = asyncio.ensure_future(
|
||||||
main(
|
main(
|
||||||
command=RuffCommand(args.ruff_command),
|
command=RuffCommand(args.ruff_command),
|
||||||
|
|
|
||||||
|
|
@ -528,7 +528,8 @@ if __name__ == "__main__":
|
||||||
else:
|
else:
|
||||||
logging.basicConfig(level=logging.INFO)
|
logging.basicConfig(level=logging.INFO)
|
||||||
|
|
||||||
loop = asyncio.get_event_loop()
|
loop = asyncio.new_event_loop()
|
||||||
|
asyncio.set_event_loop(loop)
|
||||||
if args.checkouts:
|
if args.checkouts:
|
||||||
args.checkouts.mkdir(exist_ok=True, parents=True)
|
args.checkouts.mkdir(exist_ok=True, parents=True)
|
||||||
main_task = asyncio.ensure_future(
|
main_task = asyncio.ensure_future(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue