patito 0.8.2__tar.gz → 0.8.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: patito
3
- Version: 0.8.2
3
+ Version: 0.8.3
4
4
  Summary: A dataframe modelling library built on top of polars and pydantic.
5
5
  Home-page: https://github.com/JakobGM/patito
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "patito"
3
- version = "0.8.2"
3
+ version = "0.8.3"
4
4
  description = "A dataframe modelling library built on top of polars and pydantic."
5
5
  authors = ["Jakob Gerhard Martinussen <jakobgm@gmail.com>", "Thomas Aarholt <thomasaarholt@gmail.com>"]
6
6
  license = "MIT"
@@ -301,6 +301,7 @@ def _find_errors( # noqa: C901
301
301
 
302
302
  dataframe_tmp = (
303
303
  dataframe_tmp.select(column_name)
304
+ .filter(pl.col(column_name).list.len() > 0)
304
305
  .explode(column_name)
305
306
  .unnest(column_name)
306
307
  )
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes