Skip to content

Commit

Permalink
feat: upgrade package mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
YukariChiba committed Aug 9, 2023
1 parent 811405e commit 63011ee
Show file tree
Hide file tree
Showing 1,359 changed files with 148,464 additions and 94,022 deletions.
1 change: 0 additions & 1 deletion .gitignore

This file was deleted.

7 changes: 4 additions & 3 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ Mypy (and mypyc) are licensed under the terms of the MIT license, reproduced bel

The MIT License

Copyright (c) 2015-2021 Jukka Lehtosalo and contributors
Copyright (c) 2012-2022 Jukka Lehtosalo and contributors
Copyright (c) 2015-2022 Dropbox, Inc.

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
Expand All @@ -26,8 +27,8 @@ DEALINGS IN THE SOFTWARE.

= = = = =

Portions of mypy and mypyc are licensed under different licenses. The
files under stdlib-samples as well as the files
Portions of mypy and mypyc are licensed under different licenses.
The files
mypyc/lib-rt/pythonsupport.h, mypyc/lib-rt/getargs.c and
mypyc/lib-rt/getargsfast.c are licensed under the PSF 2 License, reproduced
below.
Expand Down
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ include runtests.py
include pytest.ini

include LICENSE mypyc/README.md
exclude .gitmodules CONTRIBUTING.md CREDITS ROADMAP.md tox.ini
exclude .gitmodules CONTRIBUTING.md CREDITS ROADMAP.md tox.ini action.yml .editorconfig
exclude .git-blame-ignore-revs .pre-commit-config.yaml

global-exclude *.py[cod]
global-exclude .DS_Store
18 changes: 10 additions & 8 deletions PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,27 +1,31 @@
Metadata-Version: 2.1
Name: mypy
Version: 0.910
Version: 1.0.1
Summary: Optional static typing for Python
Home-page: http://www.mypy-lang.org/
Author: Jukka Lehtosalo
Author-email: jukka.lehtosalo@iki.fi
License: MIT License
Project-URL: News, http://mypy-lang.org/news.html
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Project-URL: Documentation, https://mypy.readthedocs.io/en/stable/index.html
Project-URL: Repository, https://github.com/python/mypy
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development
Requires-Python: >=3.5
Classifier: Typing :: Typed
Requires-Python: >=3.7
Provides-Extra: dmypy
Provides-Extra: python2
Provides-Extra: reports
Provides-Extra: install-types
License-File: LICENSE

Mypy -- Optional Static Typing for Python
Expand All @@ -33,5 +37,3 @@ 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.


0 comments on commit 63011ee

Please sign in to comment.