From a11c040754da118b8b51d5e7dc35c0348356c6cf Mon Sep 17 00:00:00 2001 From: xnuinside Date: Sun, 18 Jan 2026 14:45:15 +0300 Subject: [PATCH] Fix dependency conflict with simple-ddl-generator (issue #46) Relaxed table-meta constraint from ^0.1.5 to >=0.1.5 to allow compatibility with simple-ddl-generator which requires table-meta 0.3.x. All tests pass with both table-meta 0.1.5 and 0.3.2. --- CHANGELOG.md | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a32f594..a2a83ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -85,6 +85,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +- Fixed dependency conflict with simple-ddl-generator: relaxed `table-meta` constraint to `>=0.1.5` (issue #46) - Fixed `iterate_over_the_list()` modifying list during iteration - Fixed meaningless condition in dataclass generator - Fixed incorrect column type crash (PR #63) diff --git a/pyproject.toml b/pyproject.toml index 4a8e20e..3bfe32e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ simple-ddl-parser = "^1.0.0" Jinja2 = "^3.0.1" py-models-parser = "^1.0.0" pydantic = ">=1.8.2,<3.0.0" -table-meta = "^0.1.5" +table-meta = ">=0.1.5" [tool.poetry.dev-dependencies] pytest = "^7.4"