Skip to content

Commit ba00399

Browse files
authored
Final Polars Fix (#54)
* prevent forking * bump version
1 parent 14bfd25 commit ba00399

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/build-windows-executable-app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
OPENMS_VERSION: 3.2.0
1515
PYTHON_VERSION: 3.11.0
1616
# Name of the installer
17-
APP_NAME: FLASHApp-0.9.13
17+
APP_NAME: FLASHApp-0.9.14
1818
APP_UpgradeCode: "69ae44ad-d554-4e3c-8715-7c4daf60f8bb"
1919

2020
jobs:

app.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Needed as polars doesnt work well with forking on unix systems
2+
import multiprocessing as mp
3+
if mp.get_start_method(allow_none=True) != "spawn":
4+
mp.set_start_method("spawn", force=True)
5+
16
import streamlit as st
27
from pathlib import Path
38
import json

settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"app-name": "FLASHApp",
33
"github-user": "OpenMS",
4-
"version": "0.9.13",
4+
"version": "0.9.14",
55
"repository-name": "FLASHApp",
66
"analytics": {
77
"google-analytics": {

0 commit comments

Comments
 (0)