From a072fa8193250ebdb5c8ed713e7a068f2c253f01 Mon Sep 17 00:00:00 2001 From: Magnus Bakken <10287813+magbak@users.noreply.github.com> Date: Thu, 21 Mar 2024 12:35:29 +0100 Subject: [PATCH] Work around summary / description error: https://github.com/PyO3/maturin/pull/2002 --- .github/workflows/python_query_tests.yml | 2 +- .github/workflows/python_release.yml | 2 +- py_chrontext/Cargo.toml | 6 +++--- py_chrontext/pyproject.toml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/python_query_tests.yml b/.github/workflows/python_query_tests.yml index a1f9590..b502254 100644 --- a/.github/workflows/python_query_tests.yml +++ b/.github/workflows/python_query_tests.yml @@ -11,7 +11,7 @@ on: env: CARGO_TERM_COLOR: always RUST_LOG: debug - MATURIN_VERSION: '1.3.2' + MATURIN_VERSION: '1.5.0' RUST_TOOLCHAIN: nightly-2024-01-20 jobs: diff --git a/.github/workflows/python_release.yml b/.github/workflows/python_release.yml index b724980..8150960 100644 --- a/.github/workflows/python_release.yml +++ b/.github/workflows/python_release.yml @@ -14,7 +14,7 @@ permissions: env: CARGO_TERM_COLOR: always RUST_TOOLCHAIN: nightly-2024-01-20 - MATURIN_VERSION: '1.3.2' + MATURIN_VERSION: '1.5.0' MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }} jobs: diff --git a/py_chrontext/Cargo.toml b/py_chrontext/Cargo.toml index d42256f..7f16969 100644 --- a/py_chrontext/Cargo.toml +++ b/py_chrontext/Cargo.toml @@ -1,17 +1,17 @@ [package] name = "py_chrontext" -version = "0.8.12" +version = "0.8.13" edition = "2021" [workspace] [dependencies] -#representation = {path = "../../representation"} +# representation = {path = "../../representation"} representation = { git = "https://github.com/DataTreehouse/representation"} pyo3 = {version = "0.20.3", features = ["extension-module"]} chrontext = {path="../chrontext"} pydf_io = { git = "https://github.com/DataTreehouse/pydf_io"} -#pydf_io = { path = "../../pydf_io" } +# pydf_io = { path = "../../pydf_io" } thiserror="1.0.31" polars-core = {version="0.37.0", features = ["lazy"]} polars-lazy = {version="0.37.0"} diff --git a/py_chrontext/pyproject.toml b/py_chrontext/pyproject.toml index 7ce6dd5..5ebf81e 100644 --- a/py_chrontext/pyproject.toml +++ b/py_chrontext/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "chrontext" -description = "Hybrid SPARQL query engine for timeseries data" +summary = "Hybrid SPARQL query engine for timeseries data" dependencies = ["polars>=0.20.2", "pyarrow>=7.0.0", "pandas"] readme = "README.md" authors = [{name = "Magnus Bakken", email = "magnus@data-treehouse.com" }] @@ -27,7 +27,7 @@ Repository = "https://github.com/DataTreehouse/chrontext" Changelog = "https://github.com/DataTreehouse/chrontext/releases" [build-system] -requires = ["maturin==1.3.2"] +requires = ["maturin==1.5.0"] build-backend = "maturin" [tool.maturin]