diff options
author | adam <adam@pkgsrc.org> | 2018-11-28 08:15:31 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2018-11-28 08:15:31 +0000 |
commit | e9eceede67d18790ba2099848b019a9319c1a3b1 (patch) | |
tree | 4a6aa59098898bb93860b9bcf4c9bea3c0629d24 /lang/Makefile | |
parent | 9c4b61b6d1a76bfc9db710158ce4413cc6b9ad00 (diff) | |
download | pkgsrc-e9eceede67d18790ba2099848b019a9319c1a3b1.tar.gz |
py-mypy: added version 0.641
Add type annotations to your Python programs, and use mypy to type check them.
Mypy is essentially a Python linter on steroids, and it can catch many
programming errors by analyzing your program, without actually having to run
it. Mypy has a powerful type system with features such as type inference,
gradual typing, generics and union types.
Diffstat (limited to 'lang/Makefile')
-rw-r--r-- | lang/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lang/Makefile b/lang/Makefile index adb3a3f13c5..9335de2e587 100644 --- a/lang/Makefile +++ b/lang/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.500 2018/11/21 11:25:00 jperkin Exp $ +# $NetBSD: Makefile,v 1.501 2018/11/28 08:15:31 adam Exp $ # COMMENT= Programming languages @@ -199,6 +199,8 @@ SUBDIR+= py-execjs SUBDIR+= py-hy SUBDIR+= py-js2py SUBDIR+= py-jsparser +SUBDIR+= py-mypy +SUBDIR+= py-mypy_extensions SUBDIR+= py-parso SUBDIR+= py-paver SUBDIR+= py-pyrex |