From 2a99b0c08a0d07dd0f9f456ce7fa2fb741f8967a Mon Sep 17 00:00:00 2001 From: Jan Lerking Date: Thu, 22 Feb 2024 09:02:14 +0100 Subject: [PATCH] 0.0.8 /JL --- README.md | 2 +- pyproject.toml | 2 +- tests/main.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6947e1b..83b85ab 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ So each instance of TcxPandas can be initiated with different tcx files and then ## Usage ```python -from tcxpandas import TcxPandas +from tcxpandas.TcxPandas import TcxPandas df = TcxPandas("your_file_here.tcx") df1 = TcxPandas("another_file.tcx") diff --git a/pyproject.toml b/pyproject.toml index 0b95a9b..c12e5f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "tcxpandas" -version = "0.0.7" +version = "0.0.8" authors = [ { name="Jan Lerking" }, ] diff --git a/tests/main.py b/tests/main.py index 3148c19..05dc45c 100644 --- a/tests/main.py +++ b/tests/main.py @@ -1,5 +1,5 @@ -from tcxpandas import TcxPandas +from tcxpandas.TcxPandas import TcxPandas if __name__ == "__main__": - tcx = TcxPandas("tests/test.tcx") + tcx = TcxPandas("test-data/test.tcx") print(tcx.dataframes)