belote-cli 2.5.2__tar.gz → 2.5.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {belote_cli-2.5.2 → belote_cli-2.5.3}/CHANGELOG.md +5 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/PKG-INFO +1 -1
- {belote_cli-2.5.2 → belote_cli-2.5.3}/pyproject.toml +1 -1
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/game.py +0 -3
- {belote_cli-2.5.2 → belote_cli-2.5.3}/.claude/settings.local.json +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/.gitignore +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/DEVELOPMENT.md +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/GRIMAUD Standard Playing-Cards-1898.png +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/LICENSE +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/README.md +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/scripts/benchmark.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/__init__.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/__init__.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/ai.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/ansi.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/__init__.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/core/__init__.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/core/economy.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/core/run_state.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/core/scoring.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/engine/__init__.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/engine/event_bus.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/engine/modifier_patch.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/engine/round_driver.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/__init__.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/base.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/jokers/__init__.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/jokers/contract.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/jokers/corrupted.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/jokers/economy.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/jokers/hand_comp.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/jokers/trick_timing.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/partner_jokers/__init__.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/partner_jokers/passive.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/partner_jokers/risky.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/partner_jokers/shaper.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/planets.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/registry.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/tarots.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/vouchers.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/main.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/partner/__init__.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/partner/partner_state.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/partner/personality.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/partner/trust.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/progression/__init__.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/progression/save.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/progression/unlocks.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/run/__init__.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/run/ante.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/run/boss.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/run/decks.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/run/shop.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/ui/__init__.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/ui/announce.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/ui/collection.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/ui/hud.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/ui/menu.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/ui/rules.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/ui/shop.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/ui/trust_bar.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/config.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/context.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/deck.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/gameflow.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/input.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/main.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/rules.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/scoring.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/stats.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/themes.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/ui/__init__.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/ui/announce.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/ui/menu.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/ui/prompts.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/ui/render.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/__init__.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/belatro/__init__.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/belatro/test_belatro.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/belatro/test_boss_modifiers_integration.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/belatro/test_collection_logic.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/belatro/test_deck_variants.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/belatro/test_partner_trust.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/belatro/test_progression.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/belatro/test_round_driver.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/test_ai.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/test_belote.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/test_extended.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/test_game_logic.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/test_gameflow.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/test_new_coverage.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/test_official_rules.py +0 -0
- {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/test_properties.py +0 -0
|
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.5.3] - 2026-05-03
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **IndentationError in game.py**: Fixed a critical syntax error that prevented the game from starting.
|
|
12
|
+
|
|
8
13
|
## [2.5.2] - 2026-05-02
|
|
9
14
|
|
|
10
15
|
### Fixed
|
|
@@ -873,7 +873,4 @@ def sort_south_hand(state: GameState) -> GameState:
|
|
|
873
873
|
)
|
|
874
874
|
|
|
875
875
|
return replace(state, hands=tuple(new_hands), initial_hands=tuple(new_initial))
|
|
876
|
-
[Seat.SOUTH.value], state.trump
|
|
877
|
-
)
|
|
878
876
|
|
|
879
|
-
return replace(state, hands=tuple(new_hands), initial_hands=tuple(new_initial))
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|