Update BestBattleSnake Version to 2.6.0
Build and Push Docker Container / build-and-push (push) Failing after 23s

This commit is contained in:
2026-04-03 21:40:31 +02:00
parent dfcdbae85b
commit 8f938ce3fe
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ from time import perf_counter
from snakes.TemplateSnake import TemplateSnake
class BestBattleSnake(TemplateSnake):
VERSION = "2.5.0"
VERSION = "2.6.0"
Point = tuple[int, int]
Coord = dict[str, int]
SnakeState = dict[str, Any]
+1 -1
View File
@@ -6,7 +6,7 @@ SNAKE_REGISTRY = {
"LogicSnake": "1.1.0",
"MasterSnake": "1.2.0",
"BetterMasterSnake": "1.3.0",
"BestBattleSnake": "2.5.0",
"BestBattleSnake": "2.6.0",
}
def build_snake(selected_snake: str):