Skip to content

Commit 396e9c5

Browse files
Update file comparison app to version 0.1.2, fixing logo path and refining requirements. Enhance README.md with clearer installation instructions and update .gitignore to include neptune_downloads. (#34)
1 parent 55a07a5 commit 396e9c5

File tree

4 files changed

+22
-12
lines changed

4 files changed

+22
-12
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ __pycache__/
1010
**ubyte**
1111
*.mp4
1212
*.mp3
13+
**neptune_downloads/
1314

1415
# Logs
1516
*.log

utils/visualization_tools/file_comparison_app/README.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,35 @@ SaaS users can try the hosted version of the app with zero local setup: [![Open
2323
### Local version
2424

2525
1. Clone the repository
26-
2. Install dependencies:
26+
2. Navigate to the app directory:
2727

2828
```bash
29-
pip install -r utils/visualization_tools/file_comparison_app/requirements.txt
29+
cd utils/visualization_tools/file_comparison_app
3030
```
3131

32-
3. Run the Streamlit app:
32+
3. Install dependencies:
3333

3434
```bash
35-
streamlit run utils/visualization_tools/file_comparison_app/file_comparison_app.py
35+
pip install -Uq -r requirements.txt
3636
```
3737

38-
4. Open your browser and navigate to the provided URL (usually `http://localhost:8501`)
38+
4. Run the Streamlit app:
39+
40+
```bash
41+
streamlit run file_comparison_app.py
42+
```
43+
44+
5. Open your browser and navigate to the provided URL (usually `http://localhost:8501`)
3945

4046
---
4147

4248
## Changelog
4349

50+
### Version 0.1.2 (2025-10-16)
51+
52+
- Fixed logo path to be relative to the app directory
53+
- Fixed requirements to be more specific
54+
4455
### Version 0.1.1 (2025-10-10)
4556

4657
- Fixed handling of Neptune API key and project name

utils/visualization_tools/file_comparison_app/file_comparison_app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import pandas as pd
77
import streamlit as st
88

9-
__version__ = "0.1.1"
9+
__version__ = "0.1.2"
1010

1111
# TODO: Support runs mode
1212
# TODO: Add support for audio and html
@@ -21,7 +21,7 @@
2121
except ImportError:
2222
NEPTUNE_AVAILABLE = False
2323

24-
_LOGO_PATH = "utils/visualization_tools/file_comparison_app/assets/neptune_ai_signet_color.png"
24+
_LOGO_PATH = Path(__file__).parent.joinpath("assets/neptune_ai_signet_color.png").absolute()
2525

2626
# Configure page
2727
st.set_page_config(
Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
matplotlib>=3.5.0
2-
neptune-query>=1.7.0
3-
pandas>=1.5.0
4-
pathlib2>=2.3.0
5-
streamlit>=1.50.0
1+
neptune-query>=1.7.0,<2.0.0
2+
pandas>=2.3.3,<3.0.0
3+
streamlit>=1.50.0,<2.0.0

0 commit comments

Comments
 (0)