Skip to content

Commit

Permalink
Build(deps-dev): Bump mypy from 0.812 to 0.902 (#390)
Browse files Browse the repository at this point in the history
* Build(deps-dev): Bump mypy from 0.812 to 0.902

Bumps [mypy](https://github.com/python/mypy) from 0.812 to 0.902.
- [Release notes](https://github.com/python/mypy/releases)
- [Commits](python/mypy@v0.812...v0.902)

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

Signed-off-by: dependabot[bot] <support@github.com>

* ci: Install types-dataclasses in mypy session for Python 3.6

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claudio Jolowicz <mail@claudiojolowicz.com>
  • Loading branch information
dependabot[bot] and cjolowicz authored Jun 11, 2021
1 parent 595c744 commit 34704cc
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 28 deletions.
6 changes: 4 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,10 @@ def safety(session: Session) -> None:
def mypy(session: Session) -> None:
"""Type-check using mypy."""
args = session.posargs or ["src", "tests", "docs/conf.py"]
session.install(".")
session.install("mypy", "pytest")
deps = [".", "mypy", "pytest"] + (
["types-dataclasses"] if session.python == "3.6" else []
)
session.install(*deps)
session.run("mypy", *args)
if not session.posargs:
session.run("mypy", f"--python-executable={sys.executable}", "noxfile.py")
Expand Down
Loading

0 comments on commit 34704cc

Please sign in to comment.