Skip to content

Commit

Permalink
Merge pull request #61 from StreetEasy/bug-legacy-categoricals-int
Browse files Browse the repository at this point in the history
relaxing pydantic to >=1.9
  • Loading branch information
Casyfill authored May 11, 2023
2 parents 18a6529 + 34fea3c commit e376b13
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 43 deletions.
4 changes: 3 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Changelog

v0.0.9:
v0.0.10:
- relaxed Pydantic requirement to `>=1.9`

v0.0.9:
- Pydantic bumped to `1.10`
- Bug Fix: Categorical constraints (`exact_set`, `oneof`, `include`) now can keeo `int` and `float` values. That expands to legacy schemas as well.

Expand Down
79 changes: 39 additions & 40 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dfschema"
version = "0.0.9"
version = "0.0.10"
description = "lightweight pandas.DataFrame schema"
authors = ["Philipp <[email protected]>"]
readme = "README.md"
Expand All @@ -13,7 +13,7 @@ python = ">=3.7.1,<4.0"
pandas = "^1.2.4"
sqlalchemy = {version = "1.*", optional = true}
pandera = {version = "^0.6", optional = true}
pydantic = ">1.10"
pydantic = ">=1.9"
typer = {version = "^0.6.1", optional = true}
PyYAML = {version = "^6.0", optional = true}

Expand Down

0 comments on commit e376b13

Please sign in to comment.