Skip to content

Commit

Permalink
build(deps-dev): Bump mypy from 0.942 to 0.961
Browse files Browse the repository at this point in the history
Bumps [mypy](https://github.com/python/mypy) from 0.942 to 0.961.
- [Release notes](https://github.com/python/mypy/releases)
- [Commits](python/mypy@v0.942...v0.961)

---
updated-dependencies:
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and karajan1001 committed Jun 7, 2022
1 parent c14f963 commit 0c13481
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
30 changes: 15 additions & 15 deletions dvc/repo/__init__.py
Expand Up @@ -54,28 +54,28 @@ def wrapper(repo, *args, **kwargs):
class Repo:
DVC_DIR = ".dvc"

from dvc.repo.add import add
from dvc.repo.checkout import checkout
from dvc.repo.commit import commit
from dvc.repo.add import add # type: ignore[misc]
from dvc.repo.checkout import checkout # type: ignore[misc]
from dvc.repo.commit import commit # type: ignore[misc]
from dvc.repo.destroy import destroy # type: ignore[misc]
from dvc.repo.diff import diff
from dvc.repo.fetch import fetch
from dvc.repo.diff import diff # type: ignore[misc]
from dvc.repo.fetch import fetch # type: ignore[misc]
from dvc.repo.freeze import freeze, unfreeze # type: ignore[misc]
from dvc.repo.gc import gc
from dvc.repo.gc import gc # type: ignore[misc]
from dvc.repo.get import get as _get # type: ignore[misc]
from dvc.repo.get_url import get_url as _get_url # type: ignore[misc]
from dvc.repo.imp import imp # type: ignore[misc]
from dvc.repo.imp_url import imp_url
from dvc.repo.imp_url import imp_url # type: ignore[misc]
from dvc.repo.install import install # type: ignore[misc]
from dvc.repo.ls import ls as _ls # type: ignore[misc]
from dvc.repo.move import move
from dvc.repo.pull import pull
from dvc.repo.push import push
from dvc.repo.remove import remove
from dvc.repo.reproduce import reproduce
from dvc.repo.run import run
from dvc.repo.status import status
from dvc.repo.update import update
from dvc.repo.move import move # type: ignore[misc]
from dvc.repo.pull import pull # type: ignore[misc]
from dvc.repo.push import push # type: ignore[misc]
from dvc.repo.remove import remove # type: ignore[misc]
from dvc.repo.reproduce import reproduce # type: ignore[misc]
from dvc.repo.run import run # type: ignore[misc]
from dvc.repo.status import status # type: ignore[misc]
from dvc.repo.update import update # type: ignore[misc]

ls = staticmethod(_ls)
get = staticmethod(_get)
Expand Down
2 changes: 1 addition & 1 deletion dvc/repo/experiments/executor/manager/base.py
Expand Up @@ -183,7 +183,7 @@ def _exec_attached(self, repo: "Repo", jobs: Optional[int] = 1):
executor.reproduce,
info=executor.info,
rev=rev,
queue=pid_q,
queue=pid_q, # type: ignore[arg-type]
infofile=infofile,
log_level=logger.getEffectiveLevel(),
)
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -138,7 +138,7 @@ tests =
# and, protected method calls in our tests
pylint-plugin-utils==0.7
# type-checking
mypy==0.942
mypy==0.961
types-requests>=2.27.15
types-tabulate>=0.8.6
types-toml>=0.10.4
Expand Down

0 comments on commit 0c13481

Please sign in to comment.