fix: Add missing toml dependency to prevent release version skipping

- Add toml package to build dependencies in publish-pypi.yml
- Prevents ModuleNotFoundError during version verification
- Fixes root cause of v4.0.8 version skipping issue
- Ensures reliable PyPI release workflow execution
This commit is contained in:
markm-io
2025-09-05 16:02:59 -05:00
parent dd55823f67
commit 82b92a1ca1

View File

@@ -45,7 +45,7 @@ jobs:
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
python -m pip install build twine
python -m pip install build twine toml
- name: Verify package structure
run: |