Changelog

0.4.0 (2026-04-24)

Added

  • Add support for Python 3.13, 3.14.

Fixed

Removed

  • Drop support for Python 3.9.

0.3.0 (2024-09-15)

Changed

Removed

  • Drop support for Python 3.8.

0.2.4 (2024-01-29)

Changed

Removed

  • Drop support for Python 3.7.

0.2.3 (2023-07-06)

Changed

0.2.2 (2023-06-14)

Removed

  • get_invalid_csv_files(), as Python’s CSV parser errors only if the CSV dialect is configured.

0.2.1 (2023-06-14)

Changed

0.2.0 (2023-06-14)

Changed

  • validate_schema() accepts a validator argument, instead of using JSON Schema Draft 4.

    To preserve behavior, install jsonschema, rfc3339-validator and rfc3986-validator, and change:

    validate_schema(path, data, schema)
    

    to:

    from jsonschema import FormatChecker
    from jsonschema.validators import Draft4Validator
    
    validator = Draft4Validator(schema, format_checker=FormatChecker())
    
    validate_schema(path, data, validator)
    

0.1.1 (2023-04-19)

Fixed

Removed

  • Drop support for Python 3.6.

0.1.0 (2022-10-28)

Changed

0.0.9 (2022-04-26)

Changed

0.0.8 (2022-03-08)

Added

0.0.7 (2021-11-04)

Changed

0.0.6 (2021-07-19)

Fixed

0.0.5 (2021-04-10)

Added

  • Add Python wheels distribution.

0.0.4 (2020-06-23)

Fixed

0.0.3 (2020-03-17)

Added

Changed

0.0.2 (2020-03-16)

Added

Changed

0.0.1 (2020-03-15)

First release.