Skip to content

Commit

Permalink
🏖️ Dependency upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
asaf-kali committed Jan 6, 2025
1 parent aaaf4bb commit 95ffb91
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ cover:
export TELEGRAM_TOKEN="123:ABC"; \
coverage run -m $(PYTHON_TEST_COMMAND)
coverage html
xdg-open htmlcov/index.html &
xdg-open htmlcov/index.html > /dev/null 2>&1 &
$(DEL_COMMAND) .coverage*

# Lint
Expand Down
2 changes: 1 addition & 1 deletion app/bot/handlers/other/common.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from typing import List

import sentry_sdk
from codenames.classic.color import ClassicTeam
from codenames.classic.state import ClassicGameState
from codenames.classic.team import ClassicTeam
from codenames.generic.move import GivenGuess
from codenames.generic.player import PlayerRole
from the_spymaster_util.logger import get_logger
Expand Down
3 changes: 2 additions & 1 deletion app/bot/handlers/other/event_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
Session,
)
from codenames.classic.board import ClassicBoard
from codenames.classic.color import ClassicColor, ClassicTeam
from codenames.classic.color import ClassicColor
from codenames.classic.state import ClassicGameState
from codenames.classic.team import ClassicTeam
from codenames.classic.types import ClassicCard
from codenames.generic.move import PASS_GUESS, Clue
from codenames.generic.player import PlayerRole
Expand Down
3 changes: 2 additions & 1 deletion app/bot/models.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
from enum import IntEnum
from typing import List, Optional

from codenames.classic.color import ClassicColor, ClassicTeam
from codenames.classic.color import ClassicColor
from codenames.classic.team import ClassicTeam
from codenames.classic.winner import WinningReason
from codenames.generic.move import PASS_GUESS, QUIT_GAME
from pydantic import BaseModel
Expand Down
24 changes: 12 additions & 12 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readme = "README.md"
[tool.poetry.dependencies]
# Core
python = "^3.12"
codenames = "^5.3"
codenames = "^5.4.2"
the-spymaster-util = { version = "~3.2", extras = ["all"] }
the-spymaster-api = "^3.0"
# Telegram bot
Expand Down

0 comments on commit 95ffb91

Please sign in to comment.