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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: spells-mtg
3
- Version: 0.10.5
3
+ Version: 0.10.6
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.10.5"
14
+ version = "0.10.6"
15
15
 
16
16
  [project.license]
17
17
  text = "MIT"
@@ -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.NUM_DRAFTS],
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.NUM_DRAFTS) > 1000).select(
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