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.
Files changed (93) hide show
  1. {belote_cli-2.5.2 → belote_cli-2.5.3}/CHANGELOG.md +5 -0
  2. {belote_cli-2.5.2 → belote_cli-2.5.3}/PKG-INFO +1 -1
  3. {belote_cli-2.5.2 → belote_cli-2.5.3}/pyproject.toml +1 -1
  4. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/game.py +0 -3
  5. {belote_cli-2.5.2 → belote_cli-2.5.3}/.claude/settings.local.json +0 -0
  6. {belote_cli-2.5.2 → belote_cli-2.5.3}/.gitignore +0 -0
  7. {belote_cli-2.5.2 → belote_cli-2.5.3}/DEVELOPMENT.md +0 -0
  8. {belote_cli-2.5.2 → belote_cli-2.5.3}/GRIMAUD Standard Playing-Cards-1898.png +0 -0
  9. {belote_cli-2.5.2 → belote_cli-2.5.3}/LICENSE +0 -0
  10. {belote_cli-2.5.2 → belote_cli-2.5.3}/README.md +0 -0
  11. {belote_cli-2.5.2 → belote_cli-2.5.3}/scripts/benchmark.py +0 -0
  12. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/__init__.py +0 -0
  13. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/__init__.py +0 -0
  14. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/ai.py +0 -0
  15. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/ansi.py +0 -0
  16. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/__init__.py +0 -0
  17. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/core/__init__.py +0 -0
  18. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/core/economy.py +0 -0
  19. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/core/run_state.py +0 -0
  20. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/core/scoring.py +0 -0
  21. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/engine/__init__.py +0 -0
  22. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/engine/event_bus.py +0 -0
  23. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/engine/modifier_patch.py +0 -0
  24. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/engine/round_driver.py +0 -0
  25. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/__init__.py +0 -0
  26. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/base.py +0 -0
  27. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/jokers/__init__.py +0 -0
  28. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/jokers/contract.py +0 -0
  29. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/jokers/corrupted.py +0 -0
  30. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/jokers/economy.py +0 -0
  31. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/jokers/hand_comp.py +0 -0
  32. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/jokers/trick_timing.py +0 -0
  33. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/partner_jokers/__init__.py +0 -0
  34. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/partner_jokers/passive.py +0 -0
  35. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/partner_jokers/risky.py +0 -0
  36. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/partner_jokers/shaper.py +0 -0
  37. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/planets.py +0 -0
  38. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/registry.py +0 -0
  39. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/tarots.py +0 -0
  40. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/items/vouchers.py +0 -0
  41. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/main.py +0 -0
  42. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/partner/__init__.py +0 -0
  43. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/partner/partner_state.py +0 -0
  44. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/partner/personality.py +0 -0
  45. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/partner/trust.py +0 -0
  46. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/progression/__init__.py +0 -0
  47. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/progression/save.py +0 -0
  48. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/progression/unlocks.py +0 -0
  49. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/run/__init__.py +0 -0
  50. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/run/ante.py +0 -0
  51. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/run/boss.py +0 -0
  52. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/run/decks.py +0 -0
  53. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/run/shop.py +0 -0
  54. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/ui/__init__.py +0 -0
  55. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/ui/announce.py +0 -0
  56. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/ui/collection.py +0 -0
  57. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/ui/hud.py +0 -0
  58. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/ui/menu.py +0 -0
  59. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/ui/rules.py +0 -0
  60. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/ui/shop.py +0 -0
  61. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/belatro/ui/trust_bar.py +0 -0
  62. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/config.py +0 -0
  63. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/context.py +0 -0
  64. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/deck.py +0 -0
  65. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/gameflow.py +0 -0
  66. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/input.py +0 -0
  67. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/main.py +0 -0
  68. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/rules.py +0 -0
  69. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/scoring.py +0 -0
  70. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/stats.py +0 -0
  71. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/themes.py +0 -0
  72. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/ui/__init__.py +0 -0
  73. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/ui/announce.py +0 -0
  74. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/ui/menu.py +0 -0
  75. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/ui/prompts.py +0 -0
  76. {belote_cli-2.5.2 → belote_cli-2.5.3}/src/belote/ui/render.py +0 -0
  77. {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/__init__.py +0 -0
  78. {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/belatro/__init__.py +0 -0
  79. {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/belatro/test_belatro.py +0 -0
  80. {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/belatro/test_boss_modifiers_integration.py +0 -0
  81. {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/belatro/test_collection_logic.py +0 -0
  82. {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/belatro/test_deck_variants.py +0 -0
  83. {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/belatro/test_partner_trust.py +0 -0
  84. {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/belatro/test_progression.py +0 -0
  85. {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/belatro/test_round_driver.py +0 -0
  86. {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/test_ai.py +0 -0
  87. {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/test_belote.py +0 -0
  88. {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/test_extended.py +0 -0
  89. {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/test_game_logic.py +0 -0
  90. {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/test_gameflow.py +0 -0
  91. {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/test_new_coverage.py +0 -0
  92. {belote_cli-2.5.2 → belote_cli-2.5.3}/tests/test_official_rules.py +0 -0
  93. {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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: belote-cli
3
- Version: 2.5.2
3
+ Version: 2.5.3
4
4
  Summary: A 4-player terminal card game
5
5
  Project-URL: Homepage, https://github.com/ElysiumDisc/belote
6
6
  Project-URL: Repository, https://github.com/ElysiumDisc/belote
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "belote-cli"
7
- version = "2.5.2"
7
+ version = "2.5.3"
8
8
  description = "A 4-player terminal card game"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -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