Skip to content
Closed
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
d387a31
Update: Enforce light mode theme and prevent system defaults
achalbajpai Mar 11, 2025
148f809
fix: improve theme switching and dark theme visibility
achalbajpai Mar 13, 2025
b1b9e6c
chore: add bokeh dependency for theme support
achalbajpai Mar 13, 2025
1d10e26
chore: resolve merge conflicts with upstream
achalbajpai Mar 13, 2025
c174f50
fix: update bokeh theme config and increase test timeout
achalbajpai Mar 13, 2025
e797769
fix: increase test timeout and update dependencies
achalbajpai Mar 13, 2025
a8576f5
fix: update environment.yml for CI compatibility
achalbajpai Mar 13, 2025
8df64db
fix: add bokeh to both conda and pip dependencies
achalbajpai Mar 13, 2025
a3253e4
fix: make bokeh and psutil optional dependencies and improve theme ha…
achalbajpai Mar 15, 2025
e07e5ab
Improve theme switching with immediate visual feedback and fix Bokeh …
achalbajpai Mar 15, 2025
32326b2
fix : Bokeh's built-in themes instead of creating custom theme config…
achalbajpai Mar 15, 2025
305b03a
Fix plot_theme widget warning and use Bokeh built-in themes
achalbajpai Mar 15, 2025
92b976f
Remove pandas and pytest
achalbajpai Mar 15, 2025
ca8e8fd
Handle optional dependencies gracefully (pandas, bokeh, psutil, matpl…
achalbajpai Mar 15, 2025
18aaf02
fix: improve theme handling - Fixed Bokeh theme configuration, enhanc…
Mar 20, 2025
3cece29
fix: testing over config.toml fixed
Mar 20, 2025
54a09b7
merge: resolve conflicts with upstream while preserving theme settings
Mar 20, 2025
109038d
update : got removed during merge conflict
achalbajpai Mar 20, 2025
15e985f
remove : bioconda
achalbajpai Mar 20, 2025
3424cad
fix : as we changed to curdoc this does not matter now
Mar 20, 2025
55ae1f1
changes : remove optionality for pandas and psutil
achalbajpai Mar 30, 2025
ee79da8
changes : pt2 remove optionality for pandas and psutil
achalbajpai Mar 30, 2025
1871639
resolve : merge conflict
achalbajpai Mar 30, 2025
2cca57a
toml parser issue
achalbajpai Mar 30, 2025
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
11 changes: 7 additions & 4 deletions .streamlit/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,22 @@ port = 8501 # should be same as configured in deployment repo

[theme]
# The preset Streamlit theme that your custom theme inherits from. One of "light" or "dark".
# base =
base = "light"

# Primary accent color for interactive elements.
primaryColor = "#29379b"

# Background color for the main content area.
# backgroundColor =
backgroundColor = "#FFFFFF"

# Background color used for the sidebar and most interactive widgets.
# secondaryBackgroundColor =
secondaryBackgroundColor = "#F0F2F6"

# Color used for almost all text.
# textColor =
textColor = "#262730"

# Font family for all text in the app, except code blocks. One of "sans serif", "serif", or "monospace".
# font =

[browser]
gatherUsageStats = false
3 changes: 2 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ dependencies:
- pip==24.0
- numpy==1.26.4 # pandas and numpy are dependencies of pyopenms, however, pyopenms needs numpy<=1.26.4
- mono==6.12.0.90

- pip:
# dependencies only available through pip
# streamlit dependencies
- streamlit>=1.38.0
- captcha==0.5.0
- pyopenms_viz==1.0.0
- streamlit-js-eval
- psutil==7.0.0
- psutil==7.0.0
Loading