Skip to content

Commit a11c040

Browse files
committed
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.
1 parent 9a606ff commit a11c040

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8585

8686
### Fixed
8787

88+
- Fixed dependency conflict with simple-ddl-generator: relaxed `table-meta` constraint to `>=0.1.5` (issue #46)
8889
- Fixed `iterate_over_the_list()` modifying list during iteration
8990
- Fixed meaningless condition in dataclass generator
9091
- Fixed incorrect column type crash (PR #63)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ simple-ddl-parser = "^1.0.0"
2828
Jinja2 = "^3.0.1"
2929
py-models-parser = "^1.0.0"
3030
pydantic = ">=1.8.2,<3.0.0"
31-
table-meta = "^0.1.5"
31+
table-meta = ">=0.1.5"
3232

3333
[tool.poetry.dev-dependencies]
3434
pytest = "^7.4"

0 commit comments

Comments
 (0)