Skip to content

Commit

Permalink
upgrade acapy backchannels to python 3.9
Browse files Browse the repository at this point in the history
Signed-off-by: Sheldon Regular <sheldon.regular@gmail.com>
  • Loading branch information
nodlesh committed Jul 6, 2023
1 parent 0c515aa commit 6906fb4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion aries-backchannels/acapy/Dockerfile.acapy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7-slim-bullseye
FROM python:3.9-slim-bullseye

RUN apt-get update \
&& apt-get install -y git gnupg2 software-properties-common curl \
Expand Down
2 changes: 1 addition & 1 deletion aries-backchannels/acapy/Dockerfile.acapy-main
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7-slim-bullseye
FROM python:3.9-slim-bullseye

RUN apt-get update \
&& apt-get install -y git gnupg2 software-properties-common curl \
Expand Down
2 changes: 1 addition & 1 deletion aries-backchannels/acapy/acapy_backchannel.py
Original file line number Diff line number Diff line change
Expand Up @@ -2292,7 +2292,7 @@ async def main(start_port: int, show_timing: bool = False, interactive: bool = T
break
else:
print("Press Ctrl-C to exit ...")
remaining_tasks = asyncio.Task.all_tasks()
remaining_tasks = asyncio.all_tasks()
await asyncio.gather(*remaining_tasks)

finally:
Expand Down
2 changes: 1 addition & 1 deletion aries-backchannels/mobile/mobile_backchannel.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ async def main(start_port: int, show_timing: bool = False, interactive: bool = T
break
else:
print("Press Ctrl-C to exit ...")
remaining_tasks = asyncio.Task.all_tasks()
remaining_tasks = asyncio.all_tasks()
await asyncio.gather(*remaining_tasks)

finally:
Expand Down

0 comments on commit 6906fb4

Please sign in to comment.