valanga 0.1.8__tar.gz → 0.1.9__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 (23) hide show
  1. {valanga-0.1.8 → valanga-0.1.9}/PKG-INFO +1 -1
  2. {valanga-0.1.8 → valanga-0.1.9}/pyproject.toml +1 -1
  3. {valanga-0.1.8 → valanga-0.1.9}/src/valanga/representation_factory.py +1 -1
  4. {valanga-0.1.8 → valanga-0.1.9}/src/valanga.egg-info/PKG-INFO +1 -1
  5. {valanga-0.1.8 → valanga-0.1.9}/LICENSE +0 -0
  6. {valanga-0.1.8 → valanga-0.1.9}/README.md +0 -0
  7. {valanga-0.1.8 → valanga-0.1.9}/setup.cfg +0 -0
  8. {valanga-0.1.8 → valanga-0.1.9}/src/valanga/__init__.py +0 -0
  9. {valanga-0.1.8 → valanga-0.1.9}/src/valanga/evaluations.py +0 -0
  10. {valanga-0.1.8 → valanga-0.1.9}/src/valanga/evaluator_types.py +0 -0
  11. {valanga-0.1.8 → valanga-0.1.9}/src/valanga/game.py +0 -0
  12. {valanga-0.1.8 → valanga-0.1.9}/src/valanga/over_event.py +0 -0
  13. {valanga-0.1.8 → valanga-0.1.9}/src/valanga/policy.py +0 -0
  14. {valanga-0.1.8 → valanga-0.1.9}/src/valanga/progress_messsage.py +0 -0
  15. {valanga-0.1.8 → valanga-0.1.9}/src/valanga/py.typed +0 -0
  16. {valanga-0.1.8 → valanga-0.1.9}/src/valanga/represention_for_evaluation.py +0 -0
  17. {valanga-0.1.8 → valanga-0.1.9}/src/valanga.egg-info/SOURCES.txt +0 -0
  18. {valanga-0.1.8 → valanga-0.1.9}/src/valanga.egg-info/dependency_links.txt +0 -0
  19. {valanga-0.1.8 → valanga-0.1.9}/src/valanga.egg-info/requires.txt +0 -0
  20. {valanga-0.1.8 → valanga-0.1.9}/src/valanga.egg-info/top_level.txt +0 -0
  21. {valanga-0.1.8 → valanga-0.1.9}/tests/test_over_event.py +0 -0
  22. {valanga-0.1.8 → valanga-0.1.9}/tests/test_placeholder.py +0 -0
  23. {valanga-0.1.8 → valanga-0.1.9}/tests/test_representation_factory.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: valanga
3
- Version: 0.1.8
3
+ Version: 0.1.9
4
4
  Summary: Shared types and utilities for evaluation
5
5
  Author-email: Victor Gabillon <victorgabillon@gmail.com>
6
6
  License: GNU GENERAL PUBLIC LICENSE
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "valanga"
7
- version = "0.1.8"
7
+ version = "0.1.9"
8
8
  description = "Shared types and utilities for evaluation"
9
9
  requires-python = ">=3.13"
10
10
  dependencies = []
@@ -30,7 +30,7 @@ class CreateFromStateAndModifications[StateT: State, StateModT, RepT](Protocol):
30
30
 
31
31
 
32
32
  @dataclass
33
- class RepresentationFactory[StateT: State, StateModT, RepT]:
33
+ class RepresentationFactory[StateT: State, RepT, StateModT]:
34
34
  """Factory for creating content representations from states and state modifications.
35
35
  Attributes:
36
36
  create_from_state: Function to create a content representation from a state.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: valanga
3
- Version: 0.1.8
3
+ Version: 0.1.9
4
4
  Summary: Shared types and utilities for evaluation
5
5
  Author-email: Victor Gabillon <victorgabillon@gmail.com>
6
6
  License: GNU GENERAL PUBLIC LICENSE
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes