Skip to content

Commit 9088e4e

Browse files
oschwaldclaude
andcommitted
Update mise tools
Bump lychee 0.23.0 -> 0.24.2 via mise. Lychee 0.24 changed include_fragments from a boolean to a string enum; set it to "full" to match house convention (GeoIP2-java/ruby). Lychee 0.24 also tightened URL parsing and now errors on the ``http://username:password@host:port`` placeholder in the proxy docstrings instead of silently ignoring it. Since lychee applies its exclude patterns after URL parsing, an exclude regex can't suppress this error, so switch to the conventional angle-bracket placeholder form instead. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 4711258 commit 9088e4e

3 files changed

Lines changed: 22 additions & 16 deletions

File tree

lychee.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# lychee './**/*.md' './**/*.rst' './src/minfraud/**/*.py' './pyproject.toml'
66

77
# Include URL fragments in checks
8-
include_fragments = true
8+
include_fragments = "full"
99

1010
# Don't allow any redirects, so links that have moved are surfaced and can be
1111
# updated to their canonical destination.

mise.lock

Lines changed: 19 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/minfraud/webservice.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def __init__( # noqa: PLR0913
256256
:type timeout: float
257257
:param proxy: The URL of an HTTP proxy to use. It may optionally include
258258
a basic auth username and password, e.g.,
259-
``http://username:password@host:port``.
259+
``http://<username>:<password>@<host>:<port>``.
260260
:return: Client object
261261
:rtype: Client
262262
"""
@@ -510,7 +510,7 @@ def __init__( # noqa: PLR0913
510510
60.
511511
:param proxy: The URL of an HTTP proxy to use. It may optionally include
512512
a basic auth username and password, e.g.,
513-
``http://username:password@host:port``.
513+
``http://<username>:<password>@<host>:<port>``.
514514
:type timeout: float
515515
:return: Client object
516516
:rtype: Client

0 commit comments

Comments
 (0)