Updated config and how to load dependencies #30
Merged
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.
This pull request includes several changes aimed at simplifying the configuration process, updating documentation, and improving code consistency. The most important changes include updates to the configuration format, refactoring import statements, and adding new linting tools configuration.
Configuration and Documentation Updates:
.github/workflows/python-package.yml
: Updated the build and install paths to use${INSTALL_PATH}
, and modified theconfig.yaml
creation to reflect the new dependency structure.README.md
: Updated theconfig.yaml
format to replacetiramisu
andenv_vars
withdependencies
,includes
, andlibs
. Also, refactored import statements to simplify the configuration module import. [1] [2] [3] [4] [5] [6]config.yaml.example
: Updated the example configuration file to match the new format.Code Refactoring:
Linting Tools Configuration:
pyproject.toml
: Added configuration for linting tools such as Ruff and Codespell, and specified rules and exceptions for code quality checks.Code Consistency Improvements:
tests/tiramisu/test_schedule.py
,tests/tiramisu/test_tiramisu_server.py
,tests/tiramisu/tiramisu_actions/test_distribution.py
,tests/tiramisu/tiramisu_actions/test_expansion.py
,tests/tiramisu/tiramisu_actions/test_matrix.py
: Made minor adjustments to method calls and assertions to improve code consistency. [1] [2] [3] [4] [5] [6] [7] [8] [9]These changes collectively enhance the maintainability and readability of the codebase while ensuring that the configuration process is more straightforward and well-documented.