Skip to content

Commit

Permalink
feat: bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kurokobo committed Oct 23, 2024
1 parent c811777 commit d86df21
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 22 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9.2-slim
FROM python:3.13-slim

RUN groupadd -r bot && \
useradd -r -m -d /app -g bot bot && \
Expand Down
4 changes: 0 additions & 4 deletions helper/app_finder.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
import argparse

from gevent import monkey

monkey.patch_all()

import ms_cv # noqa: E402
import requests # noqa: E402
from legendary.cli import LegendaryCLI # noqa: E402
Expand Down
1 change: 1 addition & 0 deletions helper/epicgames_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ def main():
"import_egs_auth": None,
"auth_code": None,
"session_id": None,
"ex_token": None,
"auth_delete": None,
}
_args = type("dummy", (object,), _args)
Expand Down
4 changes: 0 additions & 4 deletions modules/gog.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
import time
from datetime import datetime

from gevent import monkey

monkey.patch_all()

import json # noqa: E402

import requests # noqa: E402
Expand Down
3 changes: 0 additions & 3 deletions modules/steam.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,9 @@
import logging
from datetime import datetime

from gevent import monkey
from steam.client import SteamClient
from steam.enums import EResult

monkey.patch_all()

from modules import utils # noqa: E402
from modules.models import App, Cache, Result # noqa: E402

Expand Down
17 changes: 9 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
wheel==0.36.2
python-dotenv==0.17.0
wheel==0.44.0
python-dotenv==1.0.1

steam==1.2.0
gevent==21.1.2
steam==1.4.4
protobuf==3.20.3
gevent==24.10.3
gevent-eventemitter==2.1
google-api-python-client==2.1.0
google-api-python-client==2.149.0

ms_cv==0.1.1

discord-webhook==0.13.0
discord-webhook==1.3.1

legendary-gl==0.20.29
legendary-gl==0.20.34

tabulate==0.8.9
tabulate==0.9.0
4 changes: 2 additions & 2 deletions sample.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Set the latest tag from: https://github.com/kurokobo/game-update-notifier/releases
GAME_UPDATE_NOTIFIER_TAG=0.0.6
# Set the latest tag from: https://github.com/kurokobo/game-update-notifier/tags
GAME_UPDATE_NOTIFIER_TAG=0.0.7

# Set "true" to prevent messages from being sent immediately after the first execution.
# Note: For Steam and GOG, this flag is ignored if a state cache exists as internal state is loaded from the cache.
Expand Down

0 comments on commit d86df21

Please sign in to comment.