Skip to content

Commit

Permalink
chore(deps): update development dependencies (non-major) (#410)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Sep 29, 2023
1 parent 995f06a commit 93a04f2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,31 +30,31 @@ craft-providers = "craft_providers.cli:main"

[project.optional-dependencies]
dev = [
"coverage[toml]==7.2.7",
"coverage[toml]==7.3.1",
"freezegun==1.2.2",
"logassert==7",
"pyfakefs==5.2.3",
"pytest==7.4.0",
"pyfakefs==5.2.4",
"pytest==7.4.2",
"pytest-cov==4.1.0",
"pytest-mock==3.11.1",
"pytest-rerunfailures==12.0",
"pytest-subprocess==1.5.0",
"pytest-xdist==3.3.1",
"pytest-time==0.3.1",
"responses==0.23.3",
"types-requests==2.31.0.2",
"types-setuptools==68.0.0.3",
"types-pyyaml==6.0.12.11",
"types-requests==2.31.0.5",
"types-setuptools==68.2.0.0",
"types-pyyaml==6.0.12.12",
]
lint = [
"black==23.7.0",
"black==23.9.1",
"codespell[toml]==2.2.5",
"ruff==0.0.291",
"yamllint==1.32.0",
]
types = [
"mypy[reports]==1.5.0",
"pyright==1.1.327",
"mypy[reports]==1.5.1",
"pyright==1.1.329",
]
docs = [
"furo==2023.9.10",
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/actions/test_snap_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ def test_inject_from_host_snapd_http_error_using_pack_fallback(
tmpdir,
):
mock_requests.get.return_value.raise_for_status.side_effect = (
requests.exceptions.HTTPError()
requests.exceptions.HTTPError() # type: ignore [reportGeneralTypeIssues]
)
fake_process.register_subprocess(
[
Expand Down

0 comments on commit 93a04f2

Please sign in to comment.