diff --git a/Cargo.toml b/Cargo.toml index cbbd084..f368e91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "python-calamine" -version = "0.1.4" -authors = ["Dmitriy "] +version = "0.1.5" +authors = ["Dmitriy "] description = "Python binding for Rust's library for reading excel and odf file - calamine" edition = "2021" homepage = "https://github.com/dimastbk/python-calamine" @@ -15,9 +15,9 @@ crate-type = ["cdylib"] [dependencies] calamine = {git = "https://github.com/tafia/calamine.git", rev = "c860397432e39cf6566bba3e148ece3632ba88d7", features = ["dates"]} -pyo3 = {version = "0.19.0", features = ["extension-module", "chrono"]} -chrono = {version = "0.4.26", features = ["serde"]} +pyo3 = {version = "0.19.2", features = ["extension-module", "chrono"]} +chrono = {version = "0.4.28", features = ["serde"]} pyo3-file = "0.7.0" [build-dependencies] -pyo3-build-config = "0.19.0" +pyo3-build-config = "0.19.2" diff --git a/pyproject.toml b/pyproject.toml index f471538..c6e525d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,8 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11" + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ] [tool.isort] @@ -27,9 +28,9 @@ python-source = "python" [tool.poetry] name = "python-calamine" -version = "0.1.4" +version = "0.1.5" description = "" -authors = ["Dmitriy "] +authors = ["Dmitriy "] [tool.poetry.dependencies] python = "^3.8"