From 28f61d86bd03cc3a1afc30ea4899b71006dbc661 Mon Sep 17 00:00:00 2001 From: ljnsn Date: Fri, 31 May 2024 23:45:19 +0200 Subject: [PATCH] fix: support py312 --- poetry.lock | 5 +++-- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/poetry.lock b/poetry.lock index 4a500b4..1100a0d 100644 --- a/poetry.lock +++ b/poetry.lock @@ -841,6 +841,7 @@ files = [ numpy = [ {version = ">=1.22.4", markers = "python_version < \"3.11\""}, {version = ">=1.23.2", markers = "python_version == \"3.11\""}, + {version = ">=1.26.0", markers = "python_version >= \"3.12\""}, ] python-dateutil = ">=2.8.2" pytz = ">=2020.1" @@ -1293,5 +1294,5 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more [metadata] lock-version = "2.0" -python-versions = ">=3.9,<3.12" -content-hash = "1b03d75d414482581ef32f66ec141a3c3835b96a24d64a0961f893469259460e" +python-versions = ">=3.9,<3.13" +content-hash = "7bc59c5415fa9d8034a13e9cd325e430d539b906334b5ac1fbc603f809511e21" diff --git a/pyproject.toml b/pyproject.toml index 3b93755..2019913 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ classifiers = [ ] [tool.poetry.dependencies] -python = ">=3.9,<3.12" +python = ">=3.9,<3.13" ezodf = ">=0.3.2" lxml = ">=4.9.2" pandas = ">=1.5.2"