Skip to content

Commit ae7d86a

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

3 files changed

Lines changed: 78 additions & 46 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/**/*.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: 75 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/geoip2/webservice.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ class AsyncClient(BaseClient):
277277
60.
278278
:param proxy: The URL of an HTTP proxy to use. It may optionally include
279279
a basic auth username and password, e.g.,
280-
``http://username:password@host:port``.
280+
``http://<username>:<password>@<host>:<port>``.
281281
282282
"""
283283

@@ -452,7 +452,7 @@ class Client(BaseClient):
452452
60.
453453
:param proxy: The URL of an HTTP proxy to use. It may optionally include
454454
a basic auth username and password, e.g.,
455-
``http://username:password@host:port``.
455+
``http://<username>:<password>@<host>:<port>``.
456456
457457
458458
"""

0 commit comments

Comments
 (0)