Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump piped from 5d4ef31 to c7e54fb #994

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/freeze-for-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Upgrade dependency locks
run: nox -s freeze-locks bot-package-diff

- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08
with:
name: gogo.patch
path: gogo.patch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/py-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
coverageLocations: .coverage.xml:coverage.py

- name: Archive coverage
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08
with:
name: coverage
path: ./coverage_html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reformat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Reformat
run: nox -s reformat bot-package-diff

- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08
with:
name: gogo.patch
path: gogo.patch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/resync-piped.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Resync Piped
run: nox -s copy-piped bot-package-diff

- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08
with:
name: gogo.patch
path: gogo.patch
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,9 @@ ignore = [
"noxfile.py" = [
"F403", # `from noxfile import *` used; unable to detect undefined name
]
"tanjun/abc.py" = [
"A005", # Module `abc` shadows a Python standard-library module
]
"tests/**/*.py" = [
"D100", # Missing docstring in public module
"D101", # Missing docstring in public class
Expand Down
2 changes: 1 addition & 1 deletion tanjun/dependencies/reloaders.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ def _add_directory(directory: str | pathlib.Path, namespace: str | None, /) -> t
error_message = f"{directory} does not exist"
raise FileNotFoundError(error_message)

return directory.resolve(), (namespace, set()) if namespace is None else (namespace, set())
return directory.resolve(), (namespace, set())


def _add_modules(paths: tuple[str | pathlib.Path, ...], /) -> tuple[dict[str, _PyPathInfo], list[pathlib.Path]]:
Expand Down
157 changes: 77 additions & 80 deletions uv.lock

Large diffs are not rendered by default.

Loading