pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/py-pytype
Module Name: pkgsrc
Committed By: adam
Date: Mon Sep 16 10:56:43 UTC 2024
Modified Files:
pkgsrc/devel/py-pytype: Makefile PLIST distinfo
Log Message:
py-pytype: updated to 2024.9.13
Version 2024.09.13:
Updates:
* Basic support for Python 3.12.
With this release you can run pytype with Python 3.12. But pytype has no
support for any new features added in Python 3.12.
Look out for type checking changes caused by different bytecode emit:
* dict/list/set comprehensions are type checked 1 level deeper.
* Errors after `if` statements can be printed differently.
* Add support for pickled pyi files in merge_pyi.py.
* Several performance improvements.
* Stop validating imports map. Pytype used to validate that each file in an
import map exists. This has proved too costly, especially on network file
systems. Pytype now assumes import maps specified via --imports_info are
correct.
* Add support for flag files (required for Bazel workers).
* Change the format of errors printed to the console.
Errors now also include the column number and a code snippet, which highlights
the part that's broken.
Old:
File "test.py", line 4, in foo: unsupported operand type(s) for +: str and int [unsupported-operands]
Function __add__ on str expects str
New:
test.py:4:10: error: in foo: unsupported operand type(s) for +: str and int [unsupported-operands]
Function __add__ on str expects str
print(arg + 3)
~~~~~~~
Bug fixes:
* Add type definitions for `aiter()` and `anext()`.
* Don't include deleted top-level variables in module types.
* Don't crash when a Generic subtype uses a TypeVar differently.
* Fix type inference for `iter(func, None)`.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-pytype/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-pytype/PLIST \
pkgsrc/devel/py-pytype/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/py-pytype/Makefile
diff -u pkgsrc/devel/py-pytype/Makefile:1.3 pkgsrc/devel/py-pytype/Makefile:1.4
--- pkgsrc/devel/py-pytype/Makefile:1.3 Tue Aug 6 11:23:30 2024
+++ pkgsrc/devel/py-pytype/Makefile Mon Sep 16 10:56:43 2024
@@ -1,13 +1,13 @@
-# $NetBSD: Makefile,v 1.3 2024/08/06 11:23:30 adam Exp $
+# $NetBSD: Makefile,v 1.4 2024/09/16 10:56:43 adam Exp $
-DISTNAME= pytype-2024.4.11
+DISTNAME= pytype-2024.9.13
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=p/pytype/}
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
HOMEPAGE= https://google.github.io/pytype
-COMMENT= static type analyzer for Python code
+COMMENT= Static type analyzer for Python code
LICENSE= mit AND apache-2.0
TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
@@ -19,9 +19,9 @@ DEPENDS+= ${PYPKGPREFIX}-importlab>=0.8:
DEPENDS+= ${PYPKGPREFIX}-jinja2>=3.1.2:../../textproc/py-jinja2
DEPENDS+= ${PYPKGPREFIX}-libcst>=1.0.1:../../lang/py-libcst
DEPENDS+= ${PYPKGPREFIX}-msgspec>=0.18.6:../../devel/py-msgspec
-DEPENDS+= ${PYPKGPREFIX}-ninja>=1.10.1:../../devel/py-ninja
-DEPENDS+= ${PYPKGPREFIX}-pycnite>=2023.10.11:../../devel/py-pycnite
DEPENDS+= ${PYPKGPREFIX}-networkx-[0-9]*:../../math/py-networkx
+DEPENDS+= ${PYPKGPREFIX}-ninja>=1.10.1:../../devel/py-ninja
+DEPENDS+= ${PYPKGPREFIX}-pycnite>=2024.7.31:../../devel/py-pycnite
DEPENDS+= ${PYPKGPREFIX}-tabulate>=0.8.10:../../textproc/py-tabulate
DEPENDS+= ${PYPKGPREFIX}-toml>=0.10.2:../../textproc/py-toml
DEPENDS+= ${PYPKGPREFIX}-typing-extensions>=4.3.0:../../devel/py-typing-extensions
@@ -30,7 +30,7 @@ USE_LANGUAGES= c c++
# Python 3.12 not supported as of 2024.4.11
# 'Python versions > 3.11 are not yet supported.' when running pytype
-PYTHON_VERSIONS_INCOMPATIBLE= 27 38 39 312
+PYTHON_VERSIONS_INCOMPATIBLE= 38 39 #312
post-install:
.for file in annotate-ast merge-pyi pytd pytype pytype-single pyxref
Index: pkgsrc/devel/py-pytype/PLIST
diff -u pkgsrc/devel/py-pytype/PLIST:1.1 pkgsrc/devel/py-pytype/PLIST:1.2
--- pkgsrc/devel/py-pytype/PLIST:1.1 Sun May 12 17:48:08 2024
+++ pkgsrc/devel/py-pytype/PLIST Mon Sep 16 10:56:43 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2024/05/12 17:48:08 wiz Exp $
+@comment $NetBSD: PLIST,v 1.2 2024/09/16 10:56:43 adam Exp $
bin/annotate-ast-${PYVERSSUFFIX}
bin/merge-pyi-${PYVERSSUFFIX}
bin/pytd-${PYVERSSUFFIX}
@@ -698,12 +698,24 @@ ${PYSITELIB}/pytype/rewrite/frame.pyo
${PYSITELIB}/pytype/rewrite/frame_test.py
${PYSITELIB}/pytype/rewrite/frame_test.pyc
${PYSITELIB}/pytype/rewrite/frame_test.pyo
+${PYSITELIB}/pytype/rewrite/function_call_helper.py
+${PYSITELIB}/pytype/rewrite/function_call_helper.pyc
+${PYSITELIB}/pytype/rewrite/function_call_helper.pyo
+${PYSITELIB}/pytype/rewrite/function_call_helper_test.py
+${PYSITELIB}/pytype/rewrite/function_call_helper_test.pyc
+${PYSITELIB}/pytype/rewrite/function_call_helper_test.pyo
${PYSITELIB}/pytype/rewrite/load_abstract.py
${PYSITELIB}/pytype/rewrite/load_abstract.pyc
${PYSITELIB}/pytype/rewrite/load_abstract.pyo
${PYSITELIB}/pytype/rewrite/load_abstract_test.py
${PYSITELIB}/pytype/rewrite/load_abstract_test.pyc
${PYSITELIB}/pytype/rewrite/load_abstract_test.pyo
+${PYSITELIB}/pytype/rewrite/operators.py
+${PYSITELIB}/pytype/rewrite/operators.pyc
+${PYSITELIB}/pytype/rewrite/operators.pyo
+${PYSITELIB}/pytype/rewrite/operators_test.py
+${PYSITELIB}/pytype/rewrite/operators_test.pyc
+${PYSITELIB}/pytype/rewrite/operators_test.pyo
${PYSITELIB}/pytype/rewrite/output.py
${PYSITELIB}/pytype/rewrite/output.pyc
${PYSITELIB}/pytype/rewrite/output.pyo
@@ -713,6 +725,18 @@ ${PYSITELIB}/pytype/rewrite/output_test.
${PYSITELIB}/pytype/rewrite/overlays/__init__.py
${PYSITELIB}/pytype/rewrite/overlays/__init__.pyc
${PYSITELIB}/pytype/rewrite/overlays/__init__.pyo
+${PYSITELIB}/pytype/rewrite/overlays/enum_overlay.py
+${PYSITELIB}/pytype/rewrite/overlays/enum_overlay.pyc
+${PYSITELIB}/pytype/rewrite/overlays/enum_overlay.pyo
+${PYSITELIB}/pytype/rewrite/overlays/enum_overlay_test.py
+${PYSITELIB}/pytype/rewrite/overlays/enum_overlay_test.pyc
+${PYSITELIB}/pytype/rewrite/overlays/enum_overlay_test.pyo
+${PYSITELIB}/pytype/rewrite/overlays/overlays.py
+${PYSITELIB}/pytype/rewrite/overlays/overlays.pyc
+${PYSITELIB}/pytype/rewrite/overlays/overlays.pyo
+${PYSITELIB}/pytype/rewrite/overlays/overlays_test.py
+${PYSITELIB}/pytype/rewrite/overlays/overlays_test.pyc
+${PYSITELIB}/pytype/rewrite/overlays/overlays_test.pyo
${PYSITELIB}/pytype/rewrite/overlays/special_builtins.py
${PYSITELIB}/pytype/rewrite/overlays/special_builtins.pyc
${PYSITELIB}/pytype/rewrite/overlays/special_builtins.pyo
@@ -731,6 +755,9 @@ ${PYSITELIB}/pytype/rewrite/stack_test.p
${PYSITELIB}/pytype/rewrite/tests/__init__.py
${PYSITELIB}/pytype/rewrite/tests/__init__.pyc
${PYSITELIB}/pytype/rewrite/tests/__init__.pyo
+${PYSITELIB}/pytype/rewrite/tests/test_args.py
+${PYSITELIB}/pytype/rewrite/tests/test_args.pyc
+${PYSITELIB}/pytype/rewrite/tests/test_args.pyo
${PYSITELIB}/pytype/rewrite/tests/test_basic.py
${PYSITELIB}/pytype/rewrite/tests/test_basic.pyc
${PYSITELIB}/pytype/rewrite/tests/test_basic.pyo
@@ -868,115 +895,135 @@ ${PYSITELIB}/pytype/tools/merge_pyi/test
${PYSITELIB}/pytype/tools/merge_pyi/test_data/__init__.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/any.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/any.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/any.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/any.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/async.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/async.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/async.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/async.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/async.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/async.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/async.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/decoration.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/decoration.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/decoration.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/decoration.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/decoration.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/decoration.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/decoration.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/defaults.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/defaults.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/defaults.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/defaults.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/defaults.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/defaults.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/defaults.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/heuristics.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/heuristics.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/heuristics.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/heuristics.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/heuristics.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/heuristics.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/heuristics.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_alias.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_alias.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_alias.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_alias.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_alias.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_alias.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_alias.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_multiple.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_multiple.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_multiple.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_multiple.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_multiple.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_multiple.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_multiple.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_notouch.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_notouch.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_notouch.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_notouch.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_notouch.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_notouch.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/imports_notouch.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/member_var.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/member_var.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/member_var.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/member_var.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/member_var.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/member_var.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/member_var.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/mismatch.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/mismatch.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/mismatch.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/mismatch.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/mismatch.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/mismatch.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/mismatch.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/nonearg.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/nonearg.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/nonearg.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/nonearg.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/nonearg.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/nonearg.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/nonearg.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/oneliner.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/oneliner.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/oneliner.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/oneliner.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/oneliner.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/oneliner.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/oneliner.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/parse_error.py
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/parse_error.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/partial.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/partial.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/partial.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/partial.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/partial.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/partial.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/partial.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/pyi_variations.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/pyi_variations.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/pyi_variations.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/pyi_variations.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/pyi_variations.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/pyi_variations.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/pyi_variations.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/redefine.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/redefine.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/redefine.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/redefine.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/redefine.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/redefine.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/redefine.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/retval_heuristics.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/retval_heuristics.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/retval_heuristics.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/retval_heuristics.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/retval_heuristics.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/retval_heuristics.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/retval_heuristics.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/scope.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/scope.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/scope.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/scope.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/scope.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/scope.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/scope.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/simple.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/simple.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/simple.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/simple.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/simple.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/simple.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/simple.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/simple_defaults.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/simple_defaults.pyc
@@ -986,24 +1033,28 @@ ${PYSITELIB}/pytype/tools/merge_pyi/test
${PYSITELIB}/pytype/tools/merge_pyi/test_data/stars.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/stars.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/stars.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/stars.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/stars.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/trailing_comma.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/trailing_comma.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/trailing_comma.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/trailing_comma.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/trailing_comma.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/trailing_comma.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/trailing_comma.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/typevar.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/typevar.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/typevar.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/typevar.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/typevar.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/typevar.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/typevar.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/var_annot.pep484.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/var_annot.pep484.pyc
${PYSITELIB}/pytype/tools/merge_pyi/test_data/var_annot.pep484.pyo
${PYSITELIB}/pytype/tools/merge_pyi/test_data/var_annot.py
${PYSITELIB}/pytype/tools/merge_pyi/test_data/var_annot.pyc
+${PYSITELIB}/pytype/tools/merge_pyi/test_data/var_annot.pyi
${PYSITELIB}/pytype/tools/merge_pyi/test_data/var_annot.pyo
${PYSITELIB}/pytype/tools/runner.py
${PYSITELIB}/pytype/tools/runner.pyc
@@ -1077,10 +1128,7 @@ ${PYSITELIB}/pytype/tracer_vm.pyo
${PYSITELIB}/pytype/typegraph/__init__.py
${PYSITELIB}/pytype/typegraph/__init__.pyc
${PYSITELIB}/pytype/typegraph/__init__.pyo
-${PYSITELIB}/pytype/typegraph/cfg.py
-${PYSITELIB}/pytype/typegraph/cfg.pyc
${PYSITELIB}/pytype/typegraph/cfg.pyi
-${PYSITELIB}/pytype/typegraph/cfg.pyo
${PYSITELIB}/pytype/typegraph/cfg.so
${PYSITELIB}/pytype/typegraph/cfg_test.py
${PYSITELIB}/pytype/typegraph/cfg_test.pyc
@@ -2683,6 +2731,7 @@ ${PYSITELIB}/pytype/typeshed/stubs/googl
${PYSITELIB}/pytype/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/stats.pyi
${PYSITELIB}/pytype/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/tasklets.pyi
${PYSITELIB}/pytype/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/utils.pyi
+${PYSITELIB}/pytype/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/version.pyi
${PYSITELIB}/pytype/typeshed/stubs/greenlet/METADATA.toml
${PYSITELIB}/pytype/typeshed/stubs/greenlet/greenlet/__init__.pyi
${PYSITELIB}/pytype/typeshed/stubs/greenlet/greenlet/_greenlet.pyi
@@ -5531,6 +5580,8 @@ ${PYSITELIB}/pytype/typeshed/stubs/worka
${PYSITELIB}/pytype/typeshed/stubs/workalendar/workalendar/usa/west_virginia.pyi
${PYSITELIB}/pytype/typeshed/stubs/workalendar/workalendar/usa/wisconsin.pyi
${PYSITELIB}/pytype/typeshed/stubs/workalendar/workalendar/usa/wyoming.pyi
+${PYSITELIB}/pytype/typeshed/stubs/wurlitzer/METADATA.toml
+${PYSITELIB}/pytype/typeshed/stubs/wurlitzer/wurlitzer.pyi
${PYSITELIB}/pytype/typeshed/stubs/xmltodict/METADATA.toml
${PYSITELIB}/pytype/typeshed/stubs/xmltodict/xmltodict.pyi
${PYSITELIB}/pytype/typeshed/stubs/zstd/METADATA.toml
Index: pkgsrc/devel/py-pytype/distinfo
diff -u pkgsrc/devel/py-pytype/distinfo:1.1 pkgsrc/devel/py-pytype/distinfo:1.2
--- pkgsrc/devel/py-pytype/distinfo:1.1 Sun May 12 17:48:08 2024
+++ pkgsrc/devel/py-pytype/distinfo Mon Sep 16 10:56:43 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2024/05/12 17:48:08 wiz Exp $
+$NetBSD: distinfo,v 1.2 2024/09/16 10:56:43 adam Exp $
-BLAKE2s (pytype-2024.4.11.tar.gz) = abcf13fcb23d1fb1a22c5dd56c9124a9ab47a42439b30e6c09b10a25dc1d19df
-SHA512 (pytype-2024.4.11.tar.gz) = 74ddf98c83758613c65d64f233c0e68ad671d7cb545b27ebb555edeff847e9187ab601e6774f2bd1e754a83ccb0eafa9b20633a7eff7de18f31f33f608ff1ff8
-Size (pytype-2024.4.11.tar.gz) = 2932344 bytes
+BLAKE2s (pytype-2024.9.13.tar.gz) = b561aeefacd5da67724a22a57ee4921a87718e3d4dcf975629a51c8fb23c83b6
+SHA512 (pytype-2024.9.13.tar.gz) = cbce88a802aa883230eaa6fe581ffca88d5ae3309fe5a9899dc243de99bba786251e562831dd05bcfee4c439b0880e2bf45e96862cbfe4c8bd81cea71314d14c
+Size (pytype-2024.9.13.tar.gz) = 2787479 bytes
Home |
Main Index |
Thread Index |
Old Index