Skip to content

Commit

Permalink
update: adjust branches covered
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelGSS committed Oct 23, 2023
1 parent 46323b1 commit ee111ed
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions dep_checker/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,10 @@ def get_cpe(self, repo_path: Path) -> Optional[str]:
]

dependencies_per_branch: dict[str, list[str]] = {
"main": common_dependencies + ["nghttp3", "ngtcp2", "undici"],
"v20.x": common_dependencies + ["nghttp3", "ngtcp2", "undici"],
"v19.x": common_dependencies + ["nghttp3", "ngtcp2", "undici"],
"v18.x": common_dependencies + ["nghttp3", "ngtcp2", "undici"],
"v16.x": common_dependencies + ["undici"],
"main": common_dependencies,
"v21.x": common_dependencies,
"v20.x": common_dependencies,
"v18.x": common_dependencies, # ["per-branch-dependencies"],
}


Expand Down

0 comments on commit ee111ed

Please sign in to comment.