In this PR, I propose removing the dependency on pydantic to avoid the installation problems caused by the lack of pre-compiled wheels and/or the Rust toolchain in some platforms (e.g. Cygwin or FreeBSD).
The objective is to make improve the viability of inflect (and other packages that depend on it) as a OS agnostic library.
Main changes in implementation
Replace the pydantic.validate_call decorator with explicit calls to _validate_type, which is based on isinstance.
Main caveats
For number_to_words, I just introduced validation for the num argument, not for the other ones. Please let me know if it would be relevant to add validations for the other arguments too.
Calls previously raising pydantic...ValidationError will not raise TypeError(f"{obj!r} given, but expecting {types}").
In this PR, I propose removing the dependency on
pydantic
to avoid the installation problems caused by the lack of pre-compiled wheels and/or the Rust toolchain in some platforms (e.g. Cygwin or FreeBSD).The objective is to make improve the viability of
inflect
(and other packages that depend on it) as a OS agnostic library.Main changes in implementation
pydantic.validate_call
decorator with explicit calls to_validate_type
, which is based onisinstance
.Main caveats
number_to_words
, I just introduced validation for thenum
argument, not for the other ones. Please let me know if it would be relevant to add validations for the other arguments too.pydantic...ValidationError
will not raiseTypeError(f"{obj!r} given, but expecting {types}")
.