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
5 changes: 4 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,8 @@ jobs:
- name: Install package in editable mode
run: pip install -e .

- name: Install mypy stubs
run: pip install types-requests

- name: Type check with mypy
run: mypy src/plotlymol3d --ignore-missing-imports
run: mypy src/plotlymol3d --ignore-missing-imports --disable-error-code=import-untyped
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -159,3 +159,4 @@ update_repo.ipynb
# Pip installation logs (artifacts from version specifiers)
=*.*.0
nul
CLAUDE.md
10 changes: 10 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"MD013": false,
"MD041": false,
"MD030": false,
"MD032": false,
"MD036": false,
"MD033": {
"allowed_elements": ["video", "source", "div", "p", "img"]
}
}
3 changes: 2 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ repos:
- id: check-yaml
args: [--unsafe]
- id: check-added-large-files
exclude: ^docs/assets/
- id: check-merge-conflict
- id: debug-statements

Expand All @@ -30,6 +31,6 @@ repos:
rev: v1.8.0
hooks:
- id: mypy
additional_dependencies: [numpy, plotly]
additional_dependencies: [numpy, plotly, types-requests]
args: [--ignore-missing-imports]
exclude: ^(src/plotlymol3d/test\.py|src/plotlymol3d/Cube_to_Blender.*)$
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed
- GUI migrated from Streamlit to Dash — launch with `python examples/gui_app.py`
- `gui` optional dependency updated: `dash>=2.14.0` + `dash-bootstrap-components>=1.5.0` (replaces `streamlit`)
- `launch_app.bat` and `stop_app.bat` updated for Dash process management

## [0.2.0] - 2026-04-04

### Added
Expand Down Expand Up @@ -37,7 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated README installation instructions for conda workflow
- Expanded test suite from 26 to 47 tests
- Bumped `requires-python` from `>=3.8` to `>=3.9`
- Fixed repo URLs in `pyproject.toml` (now correctly point to NCCU-Schultz-Lab org)
- Fixed repo URLs in `pyproject.toml` (now correctly point to The-Schultz-Lab org)

## [0.1.0] - 2026-01-31

Expand Down
Loading
Loading