Skip to content

Commit

Permalink
Merge pull request #97 from esune/chore/dependency-updates
Browse files Browse the repository at this point in the history
Bump dependencies, use Python 3.12
  • Loading branch information
esune authored Sep 25, 2024
2 parents b270a15 + 290637c commit e1dbc67
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
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

0 comments on commit e1dbc67

Please sign in to comment.