Skip to content

Commit

Permalink
chore: Template upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
pawamoy committed May 1, 2023
1 parent 4115500 commit 286c83c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .copier-answers.yml
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier
_commit: 0.15.0
_commit: 0.15.1
_src_path: gh:pawamoy/copier-pdm.git
author_email: pawamoy@pm.me
author_fullname: Timothée Mazzucotelli
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/dists.yml
Expand Up @@ -8,6 +8,7 @@ jobs:
build:
name: Build dists
runs-on: ubuntu-latest
if: github.repository_owner == 'pawamoy-insiders'
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion scripts/gen_credits.py
Expand Up @@ -63,7 +63,7 @@ def _get_deps(base_deps: Mapping[str, Mapping[str, str]]) -> dict[str, dict[str,
for pkg_dependency in lock_pkgs[pkg_name].get("dependencies", []):
parsed = regex.match(pkg_dependency).groupdict() # type: ignore[union-attr]
dep_name = parsed["dist"].lower()
if dep_name not in deps and dep_name != project["name"]:
if dep_name not in deps and dep_name != project["name"] and dep_name in lock_pkgs:
deps[dep_name] = {"license": _get_license(dep_name), **parsed, **lock_pkgs[dep_name]}
again = True

Expand Down

0 comments on commit 286c83c

Please sign in to comment.