Sorted the schematic dependencies to make them consistent.

This commit is contained in:
Salvador E. Tropea 2021-03-03 13:06:05 -03:00
parent f9ac0d001f
commit 6d59960b59
2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Errors and warnings from KiAuto now are printed as errors and warnings.
- Schematic dependencies are sorted in the generated Makefiles
### Fixed
- Problem when using E/DRC filters and the output dir didn't exist.

View File

@ -1474,7 +1474,7 @@ class Schematic(object):
files = {self.fname}
for sch in self.sheets:
files.update(sch.sheet.get_files())
return list(files)
return sorted(files)
def get_components(self, exclude_power=True):
""" A list of all the components. """