From 48dbc1c538c8ad3e8e2e5c34f3ec6a0faca55644 Mon Sep 17 00:00:00 2001 From: "Michael R. Crusoe" <1330696+mr-c@users.noreply.github.com> Date: Sat, 6 Jun 2020 20:07:33 +0200 Subject: [PATCH 1/2] include mypyc sub directories in the sdist (#8949) --- MANIFEST.in | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/MANIFEST.in b/MANIFEST.in index cb0e4f1ec243..611ffe249b5c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -5,6 +5,15 @@ recursive-include docs * recursive-include mypy/typeshed *.py *.pyi recursive-include mypy/xml *.xsd *.xslt *.css recursive-include mypyc/lib-rt *.c *.h *.tmpl +recursive-include mypyc/ir *.py +recursive-include mypyc/codegen *.py +recursive-include mypyc/irbuild *.py +recursive-include mypyc/primitives *.py +recursive-include mypyc/transform *.py +recursive-include mypyc/test *.py +recursive-include mypyc/test-data *.test +recursive-include mypyc/test-data/fixtures *.py *.pyi +recursive-include mypyc/doc *.rst *.py *.md Makefile *.bat include mypy_bootstrap.ini include mypy_self_check.ini include LICENSE From f956142030dee57e7283ad364d9c0c14945cb594 Mon Sep 17 00:00:00 2001 From: Ivan Levkivskyi Date: Fri, 12 Jun 2020 19:07:45 +0100 Subject: [PATCH 2/2] Bump version to 0.781 --- mypy/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mypy/version.py b/mypy/version.py index 2b9e49b01608..26e795eedd49 100644 --- a/mypy/version.py +++ b/mypy/version.py @@ -5,7 +5,7 @@ # - Release versions have the form "0.NNN". # - Dev versions have the form "0.NNN+dev" (PLUS sign to conform to PEP 440). # - For 1.0 we'll switch back to 1.2.3 form. -__version__ = '0.780' +__version__ = '0.781' base_version = __version__ mypy_dir = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))