spells-mtg 0.10.5__tar.gz → 0.10.6__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.10.5 → spells_mtg-0.10.6}/PKG-INFO +1 -1
- {spells_mtg-0.10.5 → spells_mtg-0.10.6}/pyproject.toml +1 -1
- {spells_mtg-0.10.5 → spells_mtg-0.10.6}/spells/external.py +2 -2
- {spells_mtg-0.10.5 → spells_mtg-0.10.6}/LICENSE +0 -0
- {spells_mtg-0.10.5 → spells_mtg-0.10.6}/README.md +0 -0
- {spells_mtg-0.10.5 → spells_mtg-0.10.6}/spells/__init__.py +0 -0
- {spells_mtg-0.10.5 → spells_mtg-0.10.6}/spells/cache.py +0 -0
- {spells_mtg-0.10.5 → spells_mtg-0.10.6}/spells/cards.py +0 -0
- {spells_mtg-0.10.5 → spells_mtg-0.10.6}/spells/columns.py +0 -0
- {spells_mtg-0.10.5 → spells_mtg-0.10.6}/spells/config.py +0 -0
- {spells_mtg-0.10.5 → spells_mtg-0.10.6}/spells/draft_data.py +0 -0
- {spells_mtg-0.10.5 → spells_mtg-0.10.6}/spells/enums.py +0 -0
- {spells_mtg-0.10.5 → spells_mtg-0.10.6}/spells/extension.py +0 -0
- {spells_mtg-0.10.5 → spells_mtg-0.10.6}/spells/filter.py +0 -0
- {spells_mtg-0.10.5 → spells_mtg-0.10.6}/spells/log.py +0 -0
- {spells_mtg-0.10.5 → spells_mtg-0.10.6}/spells/manifest.py +0 -0
- {spells_mtg-0.10.5 → spells_mtg-0.10.6}/spells/schema.py +0 -0
- {spells_mtg-0.10.5 → spells_mtg-0.10.6}/spells/utils.py +0 -0
- {spells_mtg-0.10.5 → spells_mtg-0.10.6}/tests/__init__.py +0 -0
- {spells_mtg-0.10.5 → spells_mtg-0.10.6}/tests/filter_test.py +0 -0
- {spells_mtg-0.10.5 → spells_mtg-0.10.6}/tests/utils_test.py +0 -0
|
@@ -345,11 +345,11 @@ def get_set_context(set_code: str, force_download=False) -> int:
|
|
|
345
345
|
|
|
346
346
|
df = summon(
|
|
347
347
|
set_code,
|
|
348
|
-
columns=[ColName.
|
|
348
|
+
columns=[ColName.NUM_TAKEN],
|
|
349
349
|
group_by=[ColName.DRAFT_DATE, ColName.PICK_NUM],
|
|
350
350
|
)
|
|
351
351
|
|
|
352
|
-
context_df = df.filter(pl.col(ColName.
|
|
352
|
+
context_df = df.filter(pl.col(ColName.NUM_TAKEN) > 1000).select(
|
|
353
353
|
[
|
|
354
354
|
pl.col(ColName.DRAFT_DATE).min().alias("release_date"),
|
|
355
355
|
pl.col(ColName.PICK_NUM).max().alias("picks_per_pack"),
|
|
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
|