From cea020985fbd1c5615ba8fa82f6a6a4f850b481e Mon Sep 17 00:00:00 2001 From: olzhasar Date: Tue, 2 Apr 2024 12:41:48 +0500 Subject: [PATCH] Fix tomli dependency for python < 3.11 --- poetry.lock | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/poetry.lock b/poetry.lock index 8788ae1..6cdbe63 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1207,4 +1207,4 @@ testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more [metadata] lock-version = "2.0" python-versions = ">=3.7.0,<4.0.0" -content-hash = "afb5198aed1748c02f3134632d00101d05ce3667e6f32e6e3c8170ded0da9716" +content-hash = "b85cd68e6f3373c50d91aafd93f92785c88a39e65e92ec33c26503527508764c" diff --git a/pyproject.toml b/pyproject.toml index 6534da6..56195a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ ptw = "pytest_watcher:run" [tool.poetry.dependencies] python = ">=3.7.0,<4.0.0" watchdog = ">=2.0.0" -tomli = { version = "^2.0.1", python = "<3.12" } +tomli = { version = "^2.0.1", python = "<3.11" } [tool.poetry.dev-dependencies] pytest = "*"