bin/gen_release_notes: fix support for python 3.14
There is no default even loop anymore, we need to make one if we want one now. Cc: mesa-stable Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39833>
This commit is contained in:
parent
41a25d0a6f
commit
c7603a11de
1 changed files with 1 additions and 1 deletions
|
|
@ -385,5 +385,5 @@ async def main() -> None:
|
|||
|
||||
|
||||
if __name__ == "__main__":
|
||||
loop = asyncio.get_event_loop()
|
||||
loop = asyncio.new_event_loop()
|
||||
loop.run_until_complete(main())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue