Refactor package name from 'mata' to 'datamata' in all files#6
Merged
bimantoromaesa merged 4 commits intomainfrom Mar 9, 2026
Merged
Refactor package name from 'mata' to 'datamata' in all files#6bimantoromaesa merged 4 commits intomainfrom
bimantoromaesa merged 4 commits intomainfrom
Conversation
…tions and workflows; adjust permissions for GitHub Actions
… examples, and tests - Updated all instances of 'mata' to 'datamata' in documentation files including VALIDATION_GUIDE.md and VALKEY_GUIDE.md. - Modified example scripts to reflect the new package name in installation instructions. - Adjusted test cases to ensure compatibility with the new package name. - Ensured that all references to optional dependencies for Valkey and Redis are updated accordingly.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Rename PyPI distribution from
matatodatamata. The Python import name (import mata) is unchanged — this follows the PIL/Pillow precedent where userspip install datamatabut writeimport matain code.Changes across 5 phases:
pyproject.toml—name = "datamata"; self-referencingallanddevextras updated todatamata[...].github/workflows/publish.yml— switched to OIDC Trusted Publisher auth (id-token: write+environment: pypi); trigger onpush: tags: ["v*"]unchangedImportErrorhints across 10 source files —pip install mata[...]→pip install datamata[...]test_ocr_adapter.py(×3) andtest_valkey_exporter.py(×1) — synced to new hint stringspip install matainstall instructions updated acrossREADME.md,QUICKSTART.md,CHANGELOG.md, 8 example scripts,examples/graph/scenarios/README.md, and 6 files underdocs/Why
The package name
matais unavailable on PyPI. Distributing asdatamataunblocks the v1.9.2 release while keeping zero breaking changes for existing users (import matastays identical).Checklist
pytest tests/ -v) — 4517 passed, 11 skipped, 0 failuresblack --check src/ tests/ && ruff check src/)mypy src/mata/)