From c12a42e1099b0b7837036ddc945a7af62d289fe6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Jan 2023 09:13:12 +0000 Subject: [PATCH] Update pyo3 requirement from 0.17.3 to 0.18.0 in /integration/sql Updates the requirements on [pyo3](https://github.com/pyo3/pyo3) to permit the latest version. - [Release notes](https://github.com/pyo3/pyo3/releases) - [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md) - [Commits](https://github.com/pyo3/pyo3/compare/v0.17.3...v0.18.0) --- updated-dependencies: - dependency-name: pyo3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- integration/sql/iface-py/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/sql/iface-py/Cargo.toml b/integration/sql/iface-py/Cargo.toml index 8ea6fa9e82..a170f69b38 100644 --- a/integration/sql/iface-py/Cargo.toml +++ b/integration/sql/iface-py/Cargo.toml @@ -14,7 +14,7 @@ crate-type = ["cdylib"] [dependencies] openlineage_sql = {path = "../impl"} anyhow = {workspace = true} -pyo3 = {version = "0.17.3", features = ["extension-module", "abi3", "abi3-py37", "anyhow"]} +pyo3 = {version = "0.18.0", features = ["extension-module", "abi3", "abi3-py37", "anyhow"]} sqlparser = {git = "https://github.com/mobuchowski/sqlparser-rs", branch = "sqlp-release"} [build-dependencies]