spells-mtg 0.10.6__tar.gz → 0.10.7__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.6
3
+ Version: 0.10.7
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.6"
14
+ version = "0.10.7"
15
15
 
16
16
  [project.license]
17
17
  text = "MIT"
@@ -217,21 +217,21 @@ _specs: dict[str, ColSpec] = {
217
217
  ),
218
218
  ColName.GAME_DATE: ColSpec(
219
219
  col_type=ColType.GROUP_BY,
220
- expr=pl.col(ColName.GAME_TIME).str.to_datetime("%Y-%m-%d %H-%M-%S").dt.date(),
220
+ expr=pl.col(ColName.GAME_TIME).str.to_datetime("%Y-%m-%d %H:%M:%S").dt.date(),
221
221
  ),
222
222
  ColName.GAME_DAY_OF_WEEK: ColSpec(
223
223
  col_type=ColType.GROUP_BY,
224
224
  expr=pl.col(ColName.GAME_TIME)
225
- .str.to_datetime("%Y-%m-%d %H-%M-%S")
225
+ .str.to_datetime("%Y-%m-%d %H:%M:%S")
226
226
  .dt.weekday(),
227
227
  ),
228
228
  ColName.GAME_HOUR: ColSpec(
229
229
  col_type=ColType.GROUP_BY,
230
- expr=pl.col(ColName.GAME_TIME).str.to_datetime("%Y-%m-%d %H-%M-%S").dt.hour(),
230
+ expr=pl.col(ColName.GAME_TIME).str.to_datetime("%Y-%m-%d %H:%M:%S").dt.hour(),
231
231
  ),
232
232
  ColName.GAME_WEEK: ColSpec(
233
233
  col_type=ColType.GROUP_BY,
234
- expr=pl.col(ColName.GAME_TIME).str.to_datetime("%Y-%m-%d %H-%M-%S").dt.week(),
234
+ expr=pl.col(ColName.GAME_TIME).str.to_datetime("%Y-%m-%d %H:%M:%S").dt.week(),
235
235
  ),
236
236
  ColName.BUILD_INDEX: ColSpec(
237
237
  col_type=ColType.GROUP_BY,
@@ -1,4 +1,5 @@
1
1
  all_sets = [
2
+ "DFT",
2
3
  "PIO",
3
4
  "FDN",
4
5
  "DSK",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes