diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e5aefd1a..ee07b24a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.0 +current_version = 0.5.1 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? diff --git a/HISTORY.md b/HISTORY.md index 39d788df..75912faa 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,8 @@ # Changelog +# 0.5.1 +* ENH increase limit uplaod size in GUI + # 0.5.0 * ADD plot Sample Distribution Histogram * ADD paired-ttest option diff --git a/alphastats/__init__.py b/alphastats/__init__.py index 69a17620..b32f20ca 100644 --- a/alphastats/__init__.py +++ b/alphastats/__init__.py @@ -1,5 +1,5 @@ __project__ = "alphastats" -__version__ = "0.5.0" +__version__ = "0.5.1" __license__ = "Apache" __description__ = "An open-source Python package for Mass Spectrometry Analysis" __author__ = "Mann Labs" diff --git a/alphastats/gui/.streamlit/config.toml b/alphastats/gui/.streamlit/config.toml index 0d39af7c..4133bdad 100644 --- a/alphastats/gui/.streamlit/config.toml +++ b/alphastats/gui/.streamlit/config.toml @@ -15,4 +15,7 @@ textColor = '#302E30' # Font family for all text in the app, except code blocks # Accepted values (serif | sans serif | monospace) # Default: "sans serif" -font = "sans serif" \ No newline at end of file +font = "sans serif" + +[server] +maxUploadSize = 500 \ No newline at end of file diff --git a/alphastats/gui/gui.py b/alphastats/gui/gui.py index 352e0ab9..a22a11bb 100644 --- a/alphastats/gui/gui.py +++ b/alphastats/gui/gui.py @@ -5,7 +5,7 @@ def run(): file_path = os.path.realpath(__file__) os.chdir(os.path.dirname(file_path)) - os.system("python -m streamlit run AlphaPeptStats.py --global.developmentMode=false") + os.system("python -m streamlit run AlphaPeptStats.py --global.developmentMode=false --server.maxUploadSize 500") _this_file = os.path.abspath(__file__) _this_directory = os.path.dirname(_this_file) @@ -21,7 +21,7 @@ def run(): print(f'Starting AlphaPeptStats from {file_path}') - args = ["streamlit", "run", file_path, "--global.developmentMode=false", "--browser.gatherUsageStats=False"] + args = ["streamlit", "run", file_path, "--global.developmentMode=false", "--browser.gatherUsageStats=False", "--server.maxUploadSize 500"] sys.argv = args diff --git a/docs/conf.py b/docs/conf.py index 90326506..1198692f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ author = "Elena Krismer" # The full version, including alpha/beta/rc tags -release = "0.5.0" +release = "0.5.1" # -- General configuration --------------------------------------------------- diff --git a/release/one_click_linux_gui/control b/release/one_click_linux_gui/control index 746ff050..8e902ae7 100644 --- a/release/one_click_linux_gui/control +++ b/release/one_click_linux_gui/control @@ -1,5 +1,5 @@ Package: alphastats -Version: 0.5.0 +Version: 0.5.1 Architecture: all Maintainer: MannLabs Description: alphastats diff --git a/release/one_click_linux_gui/create_installer_linux.sh b/release/one_click_linux_gui/create_installer_linux.sh index 5db226fe..18d6f3ce 100644 --- a/release/one_click_linux_gui/create_installer_linux.sh +++ b/release/one_click_linux_gui/create_installer_linux.sh @@ -17,7 +17,7 @@ python setup.py sdist bdist_wheel # Setting up the local package cd release/one_click_linux_gui # Make sure you include the required extra packages and always use the stable or very-stable options! -pip install "../../dist/alphastats-0.5.0-py3-none-any.whl" +pip install "../../dist/alphastats-0.5.1-py3-none-any.whl" # Creating the stand-alone pyinstaller folder pip install pyinstaller==5.8 diff --git a/release/one_click_macos_gui/Info.plist b/release/one_click_macos_gui/Info.plist index cddb442d..6833eee0 100644 --- a/release/one_click_macos_gui/Info.plist +++ b/release/one_click_macos_gui/Info.plist @@ -9,9 +9,9 @@ CFBundleIconFile alphapeptstats_logo.icns CFBundleIdentifier - alphastats.0.5.0 + alphastats.0.5.1 CFBundleShortVersionString - 0.5.0 + 0.5.1 CFBundleInfoDictionaryVersion 6.0 CFBundleName diff --git a/release/one_click_macos_gui/create_installer_macos.sh b/release/one_click_macos_gui/create_installer_macos.sh index ff465f17..ac2a4cf8 100755 --- a/release/one_click_macos_gui/create_installer_macos.sh +++ b/release/one_click_macos_gui/create_installer_macos.sh @@ -20,7 +20,7 @@ python setup.py sdist bdist_wheel # Setting up the local package cd release/one_click_macos_gui -pip install "../../dist/alphastats-0.5.0-py3-none-any.whl" +pip install "../../dist/alphastats-0.5.1-py3-none-any.whl" # Creating the stand-alone pyinstaller folder pip install pyinstaller==5.8 diff --git a/release/one_click_macos_gui/distribution.xml b/release/one_click_macos_gui/distribution.xml index bf4a1297..2ff30c13 100644 --- a/release/one_click_macos_gui/distribution.xml +++ b/release/one_click_macos_gui/distribution.xml @@ -1,6 +1,6 @@ - AlphaPeptStats 0.5.0 + AlphaPeptStats 0.5.1 diff --git a/release/one_click_windows_gui/alphastats_innoinstaller.iss b/release/one_click_windows_gui/alphastats_innoinstaller.iss index 101635e5..6b22290a 100644 --- a/release/one_click_windows_gui/alphastats_innoinstaller.iss +++ b/release/one_click_windows_gui/alphastats_innoinstaller.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "AlphaPeptStats" -#define MyAppVersion "0.5.0" +#define MyAppVersion "0.5.1" #define MyAppPublisher "MannLabs" #define MyAppURL "https://github.com/MannLabs/alphapeptstats" #define MyAppExeName "alphastats_gui.exe" diff --git a/release/one_click_windows_gui/create_installer_windows.sh b/release/one_click_windows_gui/create_installer_windows.sh index 82d298f5..8556750d 100644 --- a/release/one_click_windows_gui/create_installer_windows.sh +++ b/release/one_click_windows_gui/create_installer_windows.sh @@ -17,7 +17,7 @@ python setup.py sdist bdist_wheel # Setting up the local package cd release/one_click_windows_gui # Make sure you include the required extra packages and always use the stable or very-stable options! -pip install "../../dist/alphastats-0.5.0-py3-none-any.whl" +pip install "../../dist/alphastats-0.5.1-py3-none-any.whl" # Creating the stand-alone pyinstaller folder pip install pyinstaller==5.8 diff --git a/setup.py b/setup.py index ce61bcfa..e0affe1e 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def create_pip_wheel(): requirements = get_requirements() setuptools.setup( name="alphastats", - version="0.5.0", + version="0.5.1", license="Apache", description="An open-source Python package for Mass Spectrometry Analysis", long_description=get_long_description(),