Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-windows-executable-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
OPENMS_VERSION: 3.2.0
PYTHON_VERSION: 3.11.0
# Name of the installer
APP_NAME: FLASHApp-0.9.13
APP_NAME: FLASHApp-0.9.14
APP_UpgradeCode: "69ae44ad-d554-4e3c-8715-7c4daf60f8bb"

jobs:
Expand Down
5 changes: 5 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Needed as polars doesnt work well with forking on unix systems
import multiprocessing as mp
if mp.get_start_method(allow_none=True) != "spawn":
mp.set_start_method("spawn", force=True)

import streamlit as st
from pathlib import Path
import json
Expand Down
2 changes: 1 addition & 1 deletion settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"app-name": "FLASHApp",
"github-user": "OpenMS",
"version": "0.9.13",
"version": "0.9.14",
"repository-name": "FLASHApp",
"analytics": {
"google-analytics": {
Expand Down