Michael R. Crusoe pushed to branch upstream at Debian Python Team / packages / mypy
Commits: 34e5de20 by Michael R. Crusoe at 2026-05-12T08:59:27+02:00 New upstream version 2.1.0 - - - - - 143 changed files: - CHANGELOG.md - PKG-INFO - docs/source/command_line.rst - docs/source/config_file.rst - mypy-requirements.txt - mypy.egg-info/PKG-INFO - mypy.egg-info/SOURCES.txt - mypy.egg-info/requires.txt - mypy/build.py - mypy/build_worker/worker.py - mypy/checker.py - mypy/checkexpr.py - mypy/errors.py - mypy/main.py - mypy/message_registry.py - mypy/nodes.py - mypy/solve.py - mypy/subtypes.py - mypy/test/testoutput.py - mypy/typeshed/stdlib/_codecs.pyi - mypy/typeshed/stdlib/_io.pyi - mypy/typeshed/stdlib/_operator.pyi - mypy/typeshed/stdlib/_socket.pyi - mypy/typeshed/stdlib/_sqlite3.pyi - mypy/typeshed/stdlib/_ssl.pyi - mypy/typeshed/stdlib/_typeshed/__init__.pyi - mypy/typeshed/stdlib/argparse.pyi - mypy/typeshed/stdlib/codecs.pyi - mypy/typeshed/stdlib/concurrent/futures/process.pyi - mypy/typeshed/stdlib/concurrent/interpreters/__init__.pyi - mypy/typeshed/stdlib/concurrent/interpreters/_crossinterp.pyi - mypy/typeshed/stdlib/concurrent/interpreters/_queues.pyi - mypy/typeshed/stdlib/configparser.pyi - mypy/typeshed/stdlib/contextlib.pyi - mypy/typeshed/stdlib/email/message.pyi - mypy/typeshed/stdlib/json/__init__.pyi - mypy/typeshed/stdlib/lib2to3/fixes/fix_except.pyi - mypy/typeshed/stdlib/lib2to3/fixes/fix_import.pyi - mypy/typeshed/stdlib/lib2to3/fixes/fix_imports.pyi - mypy/typeshed/stdlib/lib2to3/fixes/fix_metaclass.pyi - mypy/typeshed/stdlib/lib2to3/fixes/fix_renames.pyi - mypy/typeshed/stdlib/lib2to3/fixes/fix_urllib.pyi - mypy/typeshed/stdlib/lib2to3/refactor.pyi - mypy/typeshed/stdlib/os/__init__.pyi - mypy/typeshed/stdlib/pathlib/__init__.pyi - mypy/typeshed/stdlib/sqlite3/__init__.pyi - mypy/typeshed/stdlib/ssl.pyi - mypy/typeshed/stdlib/tokenize.pyi - mypy/typeshed/stdlib/traceback.pyi - mypy/typeshed/stdlib/typing_extensions.pyi - mypy/typeshed/stdlib/xml/etree/ElementPath.pyi - mypy/typeshed/stdlib/xml/etree/ElementTree.pyi - + mypy/typeshed/stubs/librt/librt/random.pyi - mypy/typeshed/stubs/librt/librt/vecs.pyi - mypy/version.py - mypyc/build.py - mypyc/codegen/emit.py - mypyc/codegen/emitclass.py - mypyc/codegen/emitfunc.py - mypyc/codegen/emitmodule.py - mypyc/codegen/emitwrapper.py - mypyc/doc/index.rst - mypyc/doc/librt.rst - + mypyc/doc/librt_random.rst - + mypyc/doc/librt_vecs.rst - mypyc/ir/deps.py - mypyc/ir/rtypes.py - mypyc/irbuild/builder.py - mypyc/irbuild/expression.py - mypyc/irbuild/for_helpers.py - mypyc/irbuild/function.py - mypyc/irbuild/ll_builder.py - mypyc/irbuild/prepare.py - mypyc/irbuild/specialize.py - mypyc/irbuild/vec.py - mypyc/lib-rt/misc_ops.c - mypyc/lib-rt/module_shim.tmpl - mypyc/lib-rt/module_shim_no_gil_multiphase.tmpl - + mypyc/lib-rt/random/librt_random.c - + mypyc/lib-rt/random/librt_random.h - + mypyc/lib-rt/random/librt_random_api.c - + mypyc/lib-rt/random/librt_random_api.h - mypyc/lib-rt/setup.py - mypyc/lib-rt/vecs/librt_vecs.c - mypyc/lib-rt/vecs/librt_vecs.h - mypyc/lib-rt/vecs/librt_vecs_api.c - mypyc/lib-rt/vecs/librt_vecs_api.h - mypyc/lib-rt/vecs/vec_bool.c - mypyc/lib-rt/vecs/vec_float.c - mypyc/lib-rt/vecs/vec_i16.c - mypyc/lib-rt/vecs/vec_i32.c - mypyc/lib-rt/vecs/vec_i64.c - mypyc/lib-rt/vecs/vec_nested.c - mypyc/lib-rt/vecs/vec_t.c - mypyc/lib-rt/vecs/vec_template.c - mypyc/lib-rt/vecs/vec_u8.c - mypyc/lib-rt/vecs_extra_ops.c - mypyc/lib-rt/vecs_extra_ops.h - + mypyc/primitives/librt_random_ops.py - mypyc/primitives/librt_vecs_ops.py - mypyc/primitives/misc_ops.py - mypyc/primitives/registry.py - mypyc/test-data/capsule-deps.test - mypyc/test-data/fixtures/ir.py - + mypyc/test-data/irbuild-librt-random.test - mypyc/test-data/irbuild-vec-i64.test - mypyc/test-data/irbuild-vec-misc.test - mypyc/test-data/irbuild-vec-nested.test - mypyc/test-data/irbuild-vec-t.test - mypyc/test-data/refcount.test - mypyc/test-data/run-async.test - + mypyc/test-data/run-librt-random.test - mypyc/test-data/run-multimodule.test - mypyc/test-data/run-vecs-i64-interp.test - mypyc/test-data/run-vecs-i64.test - mypyc/test-data/run-vecs-misc-interp.test - mypyc/test-data/run-vecs-misc.test - mypyc/test-data/run-vecs-nested-interp.test - mypyc/test-data/run-vecs-nested.test - mypyc/test-data/run-vecs-t-interp.test - mypyc/test-data/run-vecs-t.test - + mypyc/test/test_emitmodule.py - mypyc/test/test_irbuild.py - mypyc/test/test_run.py - pyproject.toml - setup.py - test-data/unit/check-async-await.test - test-data/unit/check-class-namedtuple.test - test-data/unit/check-expressions.test - test-data/unit/check-functions.test - test-data/unit/check-generics.test - test-data/unit/check-incremental.test - test-data/unit/check-inference.test - test-data/unit/check-narrowing.test - test-data/unit/check-python310.test - test-data/unit/check-python312.test - test-data/unit/check-tuples.test - test-data/unit/check-typevar-values.test - test-data/unit/fixtures/primitives.pyi - test-data/unit/fixtures/slice.pyi - test-data/unit/fixtures/tuple.pyi - test-data/unit/outputjson.test - test-requirements.txt The diff was not included because it is too large. View it on GitLab: https://salsa.debian.org/python-team/packages/mypy/-/commit/34e5de20eafff2c34a17b666ae71f9d79e6ee376 -- View it on GitLab: https://salsa.debian.org/python-team/packages/mypy/-/commit/34e5de20eafff2c34a17b666ae71f9d79e6ee376 You're receiving this email because of your account on salsa.debian.org. Manage all notifications: https://salsa.debian.org/-/profile/notifications | Help: https://salsa.debian.org/help
_______________________________________________ debian-med-commit mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit
