spanezz / staticsite

Static site generator
GNU General Public License v3.0
45 stars 7 forks source link

Use graphlib.TopologicalSorter if available #56

Closed spanezz closed 3 years ago

spanezz commented 3 years ago

Python 3.9 introduced graphlib.TopologicalSorter.

Staticsite could use it by default, and fallback to the internal implementation (currently in staticsite/toposort.py) for older Python versions that don't have it in the standard library.

It's also worth refactoring toposort to match the API of graphlib.TopologicalSorter, turning it into a polyfill kind of thing.