-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Considerably speed up the script 6s -> 1s
This was achieved by: * Using ProcessPoolExecutor instead of ThreadPoolExecutor when creating each day. The latter was mistakenly used. * Loading the github_languages.yaml with yaml.CLoader instead of yaml.FullLoader (speed-up: 0.5s -> 0.1s) * Removed checking of each file separately if it is git-ignored. Now just iterate over all git-tracked files.
- Loading branch information
Showing
6 changed files
with
32 additions
and
19 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
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,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "aoc-tiles" | ||
version = "0.4.0" | ||
version = "0.4.1" | ||
description = "Fancy Advent of Code README tiles showing the completion status of the challenges per day" | ||
authors = ["Brutenis Gliwa, <[email protected]>"] | ||
license = "Apache-2.0" | ||
|