Skip to content

Commit 25032a4

Browse files
dependabot[bot]ekzhuclaude
authored
Bump pypa/gh-action-pypi-publish from 1.13.0 to 1.14.0 (#308)
* Bump pypa/gh-action-pypi-publish from 1.13.0 to 1.14.0 Bumps [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) from 1.13.0 to 1.14.0. - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@v1.13.0...v1.14.0) --- updated-dependencies: - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.14.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Remove unnecessary list argument from deque initialization (#309) * Fix ruff RUF037: replace deque([]) with deque() https://claude.ai/code/session_01LXPFPqVYySeSgtYYdKU56U * Accept 403/429 status codes in lychee link check Academic PDF servers (Stanford, Brown, Inria, VLDB, etc.) and some other sites block lychee's user-agent with 403 responses despite being valid links. Accept 403 and 429 (rate-limit) status codes to avoid false positives in the link-check CI job. https://claude.ai/code/session_01LXPFPqVYySeSgtYYdKU56U --------- Co-authored-by: Claude <noreply@anthropic.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Eric Zhu <320302+ekzhu@users.noreply.github.com> Co-authored-by: Claude <noreply@anthropic.com>
1 parent cc635ed commit 25032a4

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ jobs:
3232
- name: Link Checker
3333
uses: lycheeverse/lychee-action@v2
3434
with:
35-
args: --exclude ieee.org --verbose --no-progress './**/*.md' './**/*.html' './**/*.rst'
35+
args: --exclude ieee.org --accept '200,203,206,403,429' --verbose --no-progress './**/*.md' './**/*.html' './**/*.rst'
3636
fail: true

.github/workflows/pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: uv build
3434

3535
- name: Publish package to PyPI
36-
uses: pypa/gh-action-pypi-publish@v1.13.0
36+
uses: pypa/gh-action-pypi-publish@v1.14.0
3737

3838
- name: Minimize uv cache
3939
run: uv cache prune --ci

datasketch/lshensemble.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ def index(self, entries: Iterable[tuple[Hashable, MinHash, int]]) -> None:
204204
if not self.is_empty():
205205
raise ValueError("Cannot call index again on a non-empty index")
206206
if not isinstance(entries, list):
207-
queue = deque([])
207+
queue = deque()
208208
for key, minhash, size in entries:
209209
if size <= 0:
210210
raise ValueError("Set size must be positive")

0 commit comments

Comments
 (0)