From f704c95a70efd1d0948b73aa6e022b8ef534ba79 Mon Sep 17 00:00:00 2001
From: theGreatHerrLebert <davidteschner@googlemail.com>
Date: Mon, 13 Jan 2025 10:30:36 +0100
Subject: [PATCH] fixing dependency fail for build

---
 imspy/pyproject.toml       | 4 ++--
 imspy_connector/Cargo.toml | 8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/imspy/pyproject.toml b/imspy/pyproject.toml
index 2f64b419..e0df1bf8 100644
--- a/imspy/pyproject.toml
+++ b/imspy/pyproject.toml
@@ -1,6 +1,6 @@
 [project]
 name = "imspy"
-version = "0.3.7"
+version = "0.3.8"
 description = ""
 authors = [
     { name = "theGreatHerrLebert", email = "davidteschner@googlemail.com" }
@@ -19,7 +19,7 @@ dependencies = [
     "wandb>=0.12.1",
     "mokapot>=0.10.0",
     "sagepy>=0.3.0",
-    "imspy-connector>=0.3.7",
+    "imspy-connector>=0.3.8",
     "scipy>=1.7.1",
     "tqdm>=4.66",
     "pyarrow>=13.0",
diff --git a/imspy_connector/Cargo.toml b/imspy_connector/Cargo.toml
index e1a7904e..cdbcfac3 100644
--- a/imspy_connector/Cargo.toml
+++ b/imspy_connector/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "imspy-connector"
-version = "0.3.7"
+version = "0.3.8"
 edition = "2021"
 
 [lib]
@@ -9,8 +9,8 @@ crate-type = ["cdylib"]
 
 [dependencies]
 pyo3 = { version = "0.22.6", features = ["extension-module", "gil-refs"] }
-numpy = "0.22.0"
-mscore = {path = "../mscore"}
-rustdf = {path = "../rustdf"}
+numpy = "0.22.1"
+mscore = { version = "0.2.0" }
+rustdf = { version = "0.3.0" }
 serde = "1.0.202"
 serde_json = "1.0.117"