From 299d2a644eec167749df2c173c162ff9d27b41e5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Feb 2023 10:12:04 +0000 Subject: [PATCH] Update pyo3 requirement from 0.17.3 to 0.18.1 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.1) --- 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..d49acf9092 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.1", features = ["extension-module", "abi3", "abi3-py37", "anyhow"]} sqlparser = {git = "https://github.com/mobuchowski/sqlparser-rs", branch = "sqlp-release"} [build-dependencies]