diff --git a/bindings/extractous-python/Cargo.toml b/bindings/extractous-python/Cargo.toml index 5ab935d..475627a 100644 --- a/bindings/extractous-python/Cargo.toml +++ b/bindings/extractous-python/Cargo.toml @@ -18,5 +18,5 @@ doc = false [dependencies] # "abi3-py310" tells pyo3 (and maturin) to build using the stable ABI with minimum Python version 3.10 -pyo3 = { version = "0.22.2", features = ["abi3", "abi3-py38", "gil-refs"] } +pyo3 = { version = "0.23.3", features = ["abi3", "abi3-py38"] } extractous = { path = "../../extractous-core" } \ No newline at end of file diff --git a/bindings/extractous-python/pyproject.toml b/bindings/extractous-python/pyproject.toml index 16f1805..90829e5 100644 --- a/bindings/extractous-python/pyproject.toml +++ b/bindings/extractous-python/pyproject.toml @@ -13,8 +13,7 @@ classifiers = [ description = "Extractous Python Binding" license = { text = "Apache-2.0" } readme = "README.md" -# PyO3 doesn't support python 3.13 yet. -requires-python = ">=3.8,<3.13" +requires-python = ">=3.8,<3.14" [project.optional-dependencies] # To generate python docs using pdoc we need to run: