From b78404bbca233101656d95d7a6cc8ea08f8c6370 Mon Sep 17 00:00:00 2001 From: bgallois Date: Thu, 15 Feb 2024 12:00:55 +0100 Subject: [PATCH] [feat] release v0.1.1 --- fastanalyzer/fastanalyzer.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fastanalyzer/fastanalyzer.py b/fastanalyzer/fastanalyzer.py index ede9a31..4393b86 100755 --- a/fastanalyzer/fastanalyzer.py +++ b/fastanalyzer/fastanalyzer.py @@ -304,7 +304,7 @@ def main(): QFontDatabase.addApplicationFont(":/assets/Roboto-Regular.ttf") app.setFont(QFont("Roboto")) app.setApplicationName("FastAnalyzer") - app.setApplicationVersion("0.0.0") + app.setApplicationVersion("0.1.0") app.setOrganizationName("FastTrackOrg") app.setOrganizationDomain("fasttrack.sh") widget = FastAnalyzer() diff --git a/setup.py b/setup.py index 8253f39..43e0a0c 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="fastanalyzer", - version="0.0.2", + version="0.1.1", author="Benjamin Gallois", author_email="benjamin.gallois@fasttrack.sh", description="Companion application to analyze data extracted with FastTrack software.", @@ -10,7 +10,7 @@ packages=['fastanalyzer'], install_requires=[ 'fastanalysis', - 'PySide2', + 'PySide6', 'matplotlib', 'seaborn', 'statannotations',],