Skip to content

Commit

Permalink
feat: Create diagram from yaml (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
xmnlab authored Jul 3, 2024
1 parent d71b475 commit 5125f5c
Show file tree
Hide file tree
Showing 14 changed files with 787 additions and 314 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,7 @@ ENV/

# mypy
.mypy_cache/

# tmp

tmp/
10 changes: 5 additions & 5 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Release Notes

---

## [0.1.1](https://github.com/osl-incubator/umlizer/compare/0.1.0...0.1.1) (2024-01-18)


### Bug Fixes

* Fix initial code ([#8](https://github.com/osl-incubator/umlizer/issues/8)) ([de02fb0](https://github.com/osl-incubator/umlizer/commit/de02fb0df74e1c1b6ccf1302154ef6145c068730))
* Fix Release Job on CI ([#9](https://github.com/osl-incubator/umlizer/issues/9)) ([70ec6ce](https://github.com/osl-incubator/umlizer/commit/70ec6ce2072366ca624a965249f6f95e1263578d))
* Fix replace configuration in the Release workflow ([#10](https://github.com/osl-incubator/umlizer/issues/10)) ([367b83e](https://github.com/osl-incubator/umlizer/commit/367b83e34e30b835e5f09540e97ad937587488ec))
* Fix replace configuration in the Release workflow ([#11](https://github.com/osl-incubator/umlizer/issues/11)) ([dec6d29](https://github.com/osl-incubator/umlizer/commit/dec6d2927eddbed173df369c7abb2f3c4c390e71))
- Fix initial code ([#8](https://github.com/osl-incubator/umlizer/issues/8)) ([de02fb0](https://github.com/osl-incubator/umlizer/commit/de02fb0df74e1c1b6ccf1302154ef6145c068730))
- Fix Release Job on CI ([#9](https://github.com/osl-incubator/umlizer/issues/9)) ([70ec6ce](https://github.com/osl-incubator/umlizer/commit/70ec6ce2072366ca624a965249f6f95e1263578d))
- Fix replace configuration in the Release workflow ([#10](https://github.com/osl-incubator/umlizer/issues/10)) ([367b83e](https://github.com/osl-incubator/umlizer/commit/367b83e34e30b835e5f09540e97ad937587488ec))
- Fix replace configuration in the Release workflow ([#11](https://github.com/osl-incubator/umlizer/issues/11)) ([dec6d29](https://github.com/osl-incubator/umlizer/commit/dec6d2927eddbed173df369c7abb2f3c4c390e71))

# Release Notes

Expand Down
15 changes: 13 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 10 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ graphviz = ">=0.20.1"
atpublic = ">=4.0"
typing-extensions = { version = ">=4", python = "<3.9" }
typer = ">=0.9.0"
pyyaml = ">=5.4"

[tool.poetry.group.dev.dependencies]
pytest = ">=7.3.2"
Expand Down Expand Up @@ -60,6 +61,7 @@ testpaths = [
[tool.bandit]
exclude_dirs = ["tests"]
targets = "./"
skips = ["B602"]

[tool.vulture]
exclude = ["tests"]
Expand All @@ -75,7 +77,7 @@ verbose = false
line-length = 79
force-exclude = true
src = ["./"]
ignore = ["PLR0913"]
ignore = ["PLR0913", "RUF008"]
exclude = [
'docs',
]
Expand Down Expand Up @@ -108,3 +110,10 @@ ignore_missing_imports = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true


[[tool.mypy.overrides]]
module = [
"yaml",
]
ignore_missing_imports = true
Loading

0 comments on commit 5125f5c

Please sign in to comment.