Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dependencies, use Python 3.12 #97

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/Dockerfile.tails-server
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9
FROM python:3.12

ADD requirements.txt .
ADD requirements.dev.txt .
Expand Down
2 changes: 1 addition & 1 deletion requirements.dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
rich~=13.7.0
rich~=13.8.1
pynacl~=1.5.0
aiofiles~=23.2.1

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
aiohttp==3.9.5
aiohttp==3.10.5
base58~=2.1.1

# temporary to fix transitive dependency issues
multidict<5.0.0
yarl==1.6.0
yarl==1.11.1

# indy_vdr
# Error loading library: indy_vdr specified version because it occurs when installing as pip3 install indy-vdr.
Expand Down
4 changes: 2 additions & 2 deletions tails_server/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

PARSER.add_argument(
"--port",
type=str,
type=int,
required=False,
dest="port",
metavar="<port>",
Expand All @@ -38,7 +38,7 @@
required=False,
dest="log_level",
metavar="<log_level>",
help="Specify your desired loging level.",
help="Specify your desired logging level.",
)

PARSER.add_argument(
Expand Down