Skip to content

Commit 47979af

Browse files
committed
Version bumped to 1.1.2
1 parent 79caf08 commit 47979af

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

docs/changelog.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,16 @@ title: Change log
33
summary: Version history, including for legacy versions.
44
authors:
55
- Gavin Chait
6-
date: 2024-02-12
6+
date: 2024-03-08
77
tags: wrangling, crosswalks, versions
88
---
99
# Change log
1010

11+
## Version 1.1.2 (2024-03-08)
12+
13+
- Improved CATEGORISE action parser to handle greater variety of text edge cases (especially comma-separated terms).
14+
- More helpful error messages for TypeError coercision problems where a specified type mismatch occurs.
15+
1116
## Version 1.1.1 (2024-02-12)
1217

1318
- Fixes for where source field names include special characters (newlines / tabs) or characters used in scripts. As whyqd is used for more this may need thorough review.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "whyqd"
3-
version = "1.1.1"
3+
version = "1.1.2"
44
description = "data wrangling simplicity, complete audit transparency, and at speed"
55
authors = ["Gavin Chait <gchait@whythawk.com>"]
66
license = "BSD-3-Clause"

whyqd/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.1
1+
1.1.2

whyqd/parsers/datasource.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@ def set(self, *, df: pd.DataFrame, source: str | Path, mimetype: MimeType) -> No
233233

234234
def coerce_to_schema(self, *, df: pd.DataFrame, schema: Type[SchemaDefinition]) -> pd.DataFrame:
235235
# https://modin.readthedocs.io/en/stable/flow/modin/core/dataframe/pandas/partitioning/partition.html#modin.core.dataframe.pandas.partitioning.partition.PandasDataframePartition.to_numpy
236+
# CHECK: https://github.com/modin-project/modin/issues/3966
236237
validate = {"matched": [], "unmatched": [], "coerced": []}
237238
columns = self.get_header_columns(df=df)
238239
for c in columns:

0 commit comments

Comments
 (0)