Apparatus Platform, Phase 1 - #35
Merged
Merged
Conversation
This is the initial commit of the Apparatus Platform, representing the inaugural registry and management of the core Apparatus logic. This includes all items in the Apparatus Platform Phase 1 Implementation checklist. This bundle includes: - two new commands: `archivist add` and `archivist deinit` - one new utility module: `registry.py` - additional test suite modules for `add`, `deinit`, `migrate`, and `registry` - new docs to spec out registry tests and a new Phase 3 - a host of updates to existing command and utility modules to support the new functionality - updates to existing documentation to include references and update operations of new functionality
- new command `sync` - removed `migrate` - augmented `add`, `deinit`, `init` - developed helpers in utils to support new command functionality - updated test modules - updated Archivist to enable Apparatus Platform
…template literals in f strings
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.
Apparatus Platform provides a central database in which modules are registered to apparati. This introduces new commands and a host of helper functions in
utils/.New commands:
add,deinit,syncAugmented commands:
initAugmented modules:
cli.pyNew utilities:
cli_helpers.py,git.py,registry.pyAugmented utilities:
config.pyUtils barrel export updated to include new utility modules. Test suite was enhanced to cover new commands, helpers, and address bugs that arose during development.
Additionally, support for Python versions 3.10 and 3.11 have been dropped due to f string readability where template literals are concerned. Archivist now only supports Python 3.12+ moving forward.