From 6392b2f583a2ee129d5279250bb82a69d7d7dd2f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Sep 2024 21:58:05 -0500 Subject: [PATCH] [ci]: Bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.0 in the ci-dependencies group (#260) --- .github/workflows/build-and-publish-wheels.yml | 2 +- .pre-commit-config.yaml | 4 ++-- bin/run-smoke-tests.sh | 4 +++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-publish-wheels.yml b/.github/workflows/build-and-publish-wheels.yml index 569670d..0d81538 100644 --- a/.github/workflows/build-and-publish-wheels.yml +++ b/.github/workflows/build-and-publish-wheels.yml @@ -52,7 +52,7 @@ jobs: with: name: wheel path: dist - - uses: pypa/gh-action-pypi-publish@v1.9.0 + - uses: pypa/gh-action-pypi-publish@v1.10.0 with: user: __token__ password: ${{ secrets.PYPI_API_KEY }} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 735ac48..dc322d9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -13,7 +13,7 @@ repos: name: isort (python) args: ["--settings-path", "pyproject.toml"] - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.11.0 + rev: v1.11.2 hooks: - id: mypy args: ["--config-file", "pyproject.toml"] @@ -22,7 +22,7 @@ repos: - types-requests - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.5.4 + rev: v0.6.3 hooks: # Run the linter. - id: ruff diff --git a/bin/run-smoke-tests.sh b/bin/run-smoke-tests.sh index 8a48ee0..82a2ff7 100755 --- a/bin/run-smoke-tests.sh +++ b/bin/run-smoke-tests.sh @@ -65,7 +65,7 @@ shared_args=( --ignore=compiled-objects-have-debug-symbols --ignore=mixed-file-extensions --ignore=path-contains-spaces - --max-allowed-files=7500 + --max-allowed-files=8000 --max-allowed-size-uncompressed=150M ) pydistcheck \ @@ -230,6 +230,8 @@ pydistcheck \ get-files spacy pydistcheck \ --ignore 'compiled-objects-have-debug-symbols' \ + --max-allowed-size-compressed='50M' \ + --max-allowed-size-uncompressed='100M' \ ./smoke-tests/* echo "done running smoke tests"