Skip to content

Commit

Permalink
Version bumped to 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
turukawa committed Mar 8, 2024
1 parent 79caf08 commit 47979af
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
7 changes: 6 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@ title: Change log
summary: Version history, including for legacy versions.
authors:
- Gavin Chait
date: 2024-02-12
date: 2024-03-08
tags: wrangling, crosswalks, versions
---
# Change log

## Version 1.1.2 (2024-03-08)

- Improved CATEGORISE action parser to handle greater variety of text edge cases (especially comma-separated terms).
- More helpful error messages for TypeError coercision problems where a specified type mismatch occurs.

## Version 1.1.1 (2024-02-12)

- 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.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "whyqd"
version = "1.1.1"
version = "1.1.2"
description = "data wrangling simplicity, complete audit transparency, and at speed"
authors = ["Gavin Chait <[email protected]>"]
license = "BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion whyqd/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.1
1.1.2
1 change: 1 addition & 0 deletions whyqd/parsers/datasource.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ def set(self, *, df: pd.DataFrame, source: str | Path, mimetype: MimeType) -> No

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

0 comments on commit 47979af

Please sign in to comment.