From 7bcbb79a636baadb7b20d3338ccb70c0988f0761 Mon Sep 17 00:00:00 2001 From: Ann-Kristin Seifer Date: Tue, 25 Jun 2024 17:50:18 +0200 Subject: [PATCH] fixed dependencies issues --- eargait/__init__.py | 2 +- pyproject.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/eargait/__init__.py b/eargait/__init__.py index 3a167f8..d004404 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.8.0" +__version__ = "2.9.0" from eargait.eargait import EarGait diff --git a/pyproject.toml b/pyproject.toml index b22690b..1289722 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "eargait" -version = "2.8.0" +version = "2.9.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 "] @@ -25,9 +25,9 @@ numba = [ {version = ">=0.55"}, {version = ">=0.55.2", markers = "sys_platform == 'darwin' and platform_machine == 'arm64'"} ] -numpy = ">=1.20" +numpy = ">=1.20, <2.0.0" debugpy = "1.6.4" -tensorflow-io-gcs-filesystem = "0.34.0" +#tensorflow-io-gcs-filesystem = "0.34.0" [tool.poetry.dev-dependencies] pytest = "^6.2.1"