spells-mtg 0.11.8__tar.gz → 0.11.10__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.
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/PKG-INFO +2 -2
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/pyproject.toml +2 -2
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/spells/draft_data.py +7 -1
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/LICENSE +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/README.md +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/spells/.ruff_cache/.gitignore +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/spells/.ruff_cache/0.8.6/17785301476771359756 +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/spells/.ruff_cache/CACHEDIR.TAG +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/spells/__init__.py +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/spells/cache.py +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/spells/card_data_files.py +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/spells/cards.py +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/spells/columns.py +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/spells/config.py +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/spells/enums.py +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/spells/extension.py +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/spells/external.py +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/spells/filter.py +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/spells/log.py +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/spells/manifest.py +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/spells/schema.py +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/spells/utils.py +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/tests/__init__.py +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/tests/filter_test.py +0 -0
- {spells_mtg-0.11.8 → spells_mtg-0.11.10}/tests/utils_test.py +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: spells-mtg
|
|
3
|
-
Version: 0.11.
|
|
3
|
+
Version: 0.11.10
|
|
4
4
|
Summary: analaysis of 17Lands.com public datasets
|
|
5
5
|
Author-Email: Joel Barnes <oelarnes@gmail.com>
|
|
6
6
|
License: MIT
|
|
7
7
|
Requires-Python: >=3.11
|
|
8
|
-
Requires-Dist: polars
|
|
8
|
+
Requires-Dist: polars==1.22.0
|
|
9
9
|
Requires-Dist: wget>=3.2
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
|
|
@@ -6,12 +6,12 @@ authors = [
|
|
|
6
6
|
{ name = "Joel Barnes", email = "oelarnes@gmail.com" },
|
|
7
7
|
]
|
|
8
8
|
dependencies = [
|
|
9
|
-
"polars
|
|
9
|
+
"polars==1.22.0",
|
|
10
10
|
"wget>=3.2",
|
|
11
11
|
]
|
|
12
12
|
requires-python = ">=3.11"
|
|
13
13
|
readme = "README.md"
|
|
14
|
-
version = "0.11.
|
|
14
|
+
version = "0.11.10"
|
|
15
15
|
|
|
16
16
|
[project.license]
|
|
17
17
|
text = "MIT"
|
|
@@ -533,7 +533,13 @@ def summon(
|
|
|
533
533
|
else:
|
|
534
534
|
this_set_context = None
|
|
535
535
|
|
|
536
|
-
col_def_map = _hydrate_col_defs(
|
|
536
|
+
col_def_map = _hydrate_col_defs(
|
|
537
|
+
code,
|
|
538
|
+
specs,
|
|
539
|
+
set_card_context,
|
|
540
|
+
this_set_context,
|
|
541
|
+
card_only=cdfs is not None,
|
|
542
|
+
)
|
|
537
543
|
m = manifest.create(col_def_map, columns, group_by, filter_spec)
|
|
538
544
|
|
|
539
545
|
if cdfs is None:
|
|
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
|