spells-mtg 0.11.1__tar.gz → 0.11.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.

Potentially problematic release.


This version of spells-mtg might be problematic. Click here for more details.

Files changed (25) hide show
  1. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/PKG-INFO +1 -1
  2. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/pyproject.toml +1 -1
  3. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/spells/card_data_files.py +1 -1
  4. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/spells/draft_data.py +1 -1
  5. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/LICENSE +0 -0
  6. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/README.md +0 -0
  7. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/spells/.ruff_cache/.gitignore +0 -0
  8. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/spells/.ruff_cache/0.8.6/17785301476771359756 +0 -0
  9. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/spells/.ruff_cache/CACHEDIR.TAG +0 -0
  10. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/spells/__init__.py +0 -0
  11. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/spells/cache.py +0 -0
  12. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/spells/cards.py +0 -0
  13. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/spells/columns.py +0 -0
  14. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/spells/config.py +0 -0
  15. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/spells/enums.py +0 -0
  16. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/spells/extension.py +0 -0
  17. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/spells/external.py +0 -0
  18. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/spells/filter.py +0 -0
  19. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/spells/log.py +0 -0
  20. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/spells/manifest.py +0 -0
  21. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/spells/schema.py +0 -0
  22. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/spells/utils.py +0 -0
  23. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/tests/__init__.py +0 -0
  24. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/tests/filter_test.py +0 -0
  25. {spells_mtg-0.11.1 → spells_mtg-0.11.3}/tests/utils_test.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: spells-mtg
3
- Version: 0.11.1
3
+ Version: 0.11.3
4
4
  Summary: analaysis of 17Lands.com public datasets
5
5
  Author-Email: Joel Barnes <oelarnes@gmail.com>
6
6
  License: MIT
@@ -11,7 +11,7 @@ dependencies = [
11
11
  ]
12
12
  requires-python = ">=3.11"
13
13
  readme = "README.md"
14
- version = "0.11.1"
14
+ version = "0.11.3"
15
15
 
16
16
  [project.license]
17
17
  text = "MIT"
@@ -156,7 +156,7 @@ def base_ratings_df(
156
156
  user_group_param = (
157
157
  "" if player_cohort == "all" else f"&user_group={player_cohort}"
158
158
  )
159
- deck_color_param = "" if deck_color == "any" else f"&deck_colors={deck_color}"
159
+ deck_color_param = "" if deck_color == "any" else f"&colors={deck_color}"
160
160
 
161
161
  url = RATINGS_TEMPLATE.format(
162
162
  set_code=set_code,
@@ -34,7 +34,7 @@ class CardDataFileSpec():
34
34
  set_code: str
35
35
  format: str = "PremierDraft"
36
36
  player_cohort: str = "all"
37
- deck_colors: str = "any"
37
+ deck_colors: str | list[str] = "any"
38
38
  start_date: datetime.date | None = None
39
39
  end_date: datetime.date | None = None
40
40
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes