Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-06-17 | move base class for system dependencies into base.py | Eli Schwartz | 1 | -29/+0 | |
In accordance with review comments; it's small enough this seems fitting. | |||||
2021-06-14 | dependencies: Use a typing.NewType for Dependency.type_name | Dylan Baker | 1 | -2/+2 | |
This allow mypy to catch cases where we accidently assign the dependency name to the type_name, as it sees them as having different types (though at runtime they're all strings). | |||||
2021-06-13 | dependencies: Add a System Dependency | Dylan Baker | 1 | -0/+29 | |
as a base class for other system dependencies. This will later be used to to fix the type_name vs name confusion. |