Skip to content

Commit 14bfd25

Browse files
authored
Fix Polars (#53)
* remove streaming * remove streaming
1 parent e7cff7a commit 14bfd25

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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.12
17+
APP_NAME: FLASHApp-0.9.13
1818
APP_UpgradeCode: "69ae44ad-d554-4e3c-8715-7c4daf60f8bb"
1919

2020
jobs:

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.12",
4+
"version": "0.9.13",
55
"repository-name": "FLASHApp",
66
"analytics": {
77
"google-analytics": {

src/parse/deconv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def parseDeconv(
4545
)
4646

4747
# Collect here as this is the data we are operating on
48-
relevant_heatmap_lazy = relevant_heatmap_lazy.collect(streaming=True).lazy()
48+
relevant_heatmap_lazy = relevant_heatmap_lazy.collect().lazy()
4949

5050
# Get count for compression level calculation
5151
heatmap_count = relevant_heatmap_lazy.select(pl.len()).collect().item()

0 commit comments

Comments
 (0)