Skip to content

Commit

Permalink
Merge pull request #707 from nodlesh/fix/acapy-container-python-version
Browse files Browse the repository at this point in the history
upgrade acapy backchannels to python 3.9
  • Loading branch information
swcurran committed Jul 6, 2023
2 parents 0c515aa + 6906fb4 commit 7ec46b9
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 7ec46b9

Please sign in to comment.