-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cleaned up __root__ references, fixed bugs, added small features
- Fixed pyproject.toml dependencies - Added model properties to encapsulate `__root__` - Added online help for commands - Added `show-config` command - Added `--basedir` CLI option - Fixed docker syntax line in base template - Added support for SHELL in stage template - Fixed bug with LABEL k/v pair - Updated test suite
- Loading branch information
1 parent
ef0c5ef
commit b0968ea
Showing
10 changed files
with
54 additions
and
27 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
- Add `setup` feature for modules | ||
- Add build profiles to control the generation of the bakefile(s) | ||
- Add duplicate name check to config file validation | ||
- Add duplicate name check to config file validation | ||
- Upgrade to pydantic 2.x | ||
- Unit tests | ||
- Integration (CLI) tests |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# syntax = docker/dockerfile:1.2 | ||
# syntax=docker/dockerfile:1 | ||
|
||
{% block pre_init %}{% endblock %} | ||
|
||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# syntax = docker/dockerfile:1.2 | ||
# syntax=docker/dockerfile:1 | ||
|
||
ARG PYTHON_VERSION=3.9 | ||
ARG BASE_OS=slim | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ dependencies = [ | |
"pyyaml", | ||
"jinja2", | ||
"click", | ||
"pydantic", | ||
"pydantic==1.*", | ||
"typer", | ||
"rich" | ||
] | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ jinja2 | |
click | ||
pydantic==1.* | ||
typer | ||
rich | ||
rich |