From caad5d928d80c065037a9a98491c0b7ea42d6533 Mon Sep 17 00:00:00 2001 From: Ann-Kristin Seifer Date: Thu, 27 Jun 2024 11:04:16 +0200 Subject: [PATCH] dependencies issues tensorflow-io-gcs-filesystem --- eargait/__init__.py | 2 +- pyproject.toml | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/eargait/__init__.py b/eargait/__init__.py index d004404..0b5e5db 100644 --- a/eargait/__init__.py +++ b/eargait/__init__.py @@ -1,6 +1,6 @@ """The Gait and Movement Analysis Package based on Ear-worn Sensor.""" -__version__ = "2.9.0" +__version__ = "2.10.0" from eargait.eargait import EarGait diff --git a/pyproject.toml b/pyproject.toml index 1289722..fd47272 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "eargait" -version = "2.9.0" +version = "2.10.0" description = "*Eargait* provides a set of algorithms and functions to process IMU data recorded with ear-worn IMU sensors and to estimate characteristic gait parameters. " authors = ["Ann-Kristin Seifer ", "Arne Küderle "] @@ -27,7 +27,11 @@ numba = [ ] numpy = ">=1.20, <2.0.0" debugpy = "1.6.4" -#tensorflow-io-gcs-filesystem = "0.34.0" +tensorflow-io-gcs-filesystem = [ + {version= "0.30.0", platform = 'win32'}, + {version= "^0.34.0", platform = 'darwin'}, + {version= "^0.34.0", platform = 'linux'} +] [tool.poetry.dev-dependencies] pytest = "^6.2.1"