From 1c0022182543cd87ca64898a3273a93b43edec12 Mon Sep 17 00:00:00 2001 From: Grieve Date: Thu, 20 Jun 2024 11:22:22 +0800 Subject: [PATCH 1/2] Remove events in modeling py CI --- .github/workflows/modeling-py-ci.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/modeling-py-ci.yml b/.github/workflows/modeling-py-ci.yml index 1d4c8b1a5..003c5d249 100644 --- a/.github/workflows/modeling-py-ci.yml +++ b/.github/workflows/modeling-py-ci.yml @@ -6,15 +6,9 @@ name: Modeling Python CI on: - push: - branches: - - main - tags: - - '*' pull_request: paths: - 'wren-modeling-py/**' - workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.event.number }} From 1127cc6343748f24be5676f4b60073934906a945 Mon Sep 17 00:00:00 2001 From: Grieve Date: Thu, 20 Jun 2024 11:22:33 +0800 Subject: [PATCH 2/2] Fix Cargo.lock --- wren-modeling-py/Cargo.lock | 91 +++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) diff --git a/wren-modeling-py/Cargo.lock b/wren-modeling-py/Cargo.lock index e15ac0727..bc713f375 100644 --- a/wren-modeling-py/Cargo.lock +++ b/wren-modeling-py/Cargo.lock @@ -76,6 +76,55 @@ dependencies = [ "libc", ] +[[package]] +name = "anstream" +version = "0.6.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is_terminal_polyfill", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" + +[[package]] +name = "anstyle-parse" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad186efb764318d35165f1758e7dcef3b10628e26d41a44bc5550652e6804391" +dependencies = [ + "windows-sys", +] + +[[package]] +name = "anstyle-wincon" +version = "3.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" +dependencies = [ + "anstyle", + "windows-sys", +] + [[package]] name = "arrayref" version = "0.3.7" @@ -525,6 +574,12 @@ dependencies = [ "phf_codegen", ] +[[package]] +name = "colorchoice" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" + [[package]] name = "comfy-table" version = "7.1.1" @@ -965,6 +1020,29 @@ version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b" +[[package]] +name = "env_filter" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea" +dependencies = [ + "log", + "regex", +] + +[[package]] +name = "env_logger" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9" +dependencies = [ + "anstream", + "anstyle", + "env_filter", + "humantime", + "log", +] + [[package]] name = "equivalent" version = "1.0.1" @@ -1382,6 +1460,12 @@ version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02" +[[package]] +name = "is_terminal_polyfill" +version = "1.70.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" + [[package]] name = "itertools" version = "0.12.1" @@ -2485,6 +2569,12 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" +[[package]] +name = "utf8parse" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" + [[package]] name = "uuid" version = "1.8.0" @@ -2678,6 +2768,7 @@ dependencies = [ "arrow-schema", "async-trait", "datafusion", + "env_logger", "log", "petgraph", "petgraph-evcxr",