Skip to content

Commit

Permalink
poetry: pin pydantic and tomlkit to lowest working versions
Browse files Browse the repository at this point in the history
pydantic>=2.0 and tomlkit>=0.8 respectively
  • Loading branch information
markjoshwel committed Mar 3, 2024
1 parent 2380276 commit 89542e5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions poetry.lock

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

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[tool.poetry]
name = "tomlantic"
version = "0.1.0-beta"
version = "0.1.0"
description = "marrying pydantic models and tomlkit documents"
authors = ["Mark Joshwel <mark@joshwel.co>"]
license = "Unlicense"
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.8"
pydantic = "^2.6.2"
tomlkit = "^0.12.4"
pydantic = ">=2.0"
tomlkit = ">=0.8"

[tool.poetry.group.dev.dependencies]
black = "^24.2.0"
Expand Down

0 comments on commit 89542e5

Please sign in to comment.