|
4 | 4 |
|
5 | 5 | ## Mypy 1.16 (unreleased) |
6 | 6 |
|
| 7 | +We’ve just uploaded mypy 1.16 to the Python Package Index ([PyPI](https://pypi.org/project/mypy/)). |
| 8 | +Mypy is a static type checker for Python. This release includes new features and bug fixes. |
| 9 | +You can install it as follows: |
| 10 | + |
| 11 | + python3 -m pip install -U mypy |
| 12 | + |
| 13 | +You can read the full documentation for this release on [Read the Docs](http://mypy.readthedocs.io). |
| 14 | + |
7 | 15 | ### Different Property Getter and Setter Types |
8 | 16 |
|
9 | 17 | Mypy now supports using different types for a property getter and setter: |
@@ -347,7 +355,7 @@ These are specific to mypy. Mypyc-related performance improvements are discussed |
347 | 355 | * Reject duplicate `ParamSpec.{args,kwargs}` at call site (Stanislav Terliakov, PR [18854](https://github.com/python/mypy/pull/18854)) |
348 | 356 | * Make detection of enum members more consistent (sobolevn, PR [18675](https://github.com/python/mypy/pull/18675)) |
349 | 357 | * Admit that `**kwargs` mapping subtypes may have no direct type parameters (Stanislav Terliakov, PR [18850](https://github.com/python/mypy/pull/18850)) |
350 | | - * Drop don't suggest `types-setuptools for `pkg_resources` (Shantanu, PR [18840](https://github.com/python/mypy/pull/18840)) |
| 358 | + * Don't suggest `types-setuptools` for `pkg_resources` (Shantanu, PR [18840](https://github.com/python/mypy/pull/18840)) |
351 | 359 | * Suggest `scipy-stubs` for `scipy` as non-typeshed stub package (Joren Hammudoglu, PR [18832](https://github.com/python/mypy/pull/18832)) |
352 | 360 | * Narrow tagged unions in match statements (Gene Parmesan Thomas, PR [18791](https://github.com/python/mypy/pull/18791)) |
353 | 361 | * Consistently store settable property type (Ivan Levkivskyi, PR [18774](https://github.com/python/mypy/pull/18774)) |
@@ -385,6 +393,14 @@ These are specific to mypy. Mypyc-related performance improvements are discussed |
385 | 393 | * Add better naming and improve compatibility for ad hoc intersections of instances (Christoph Tyralla, PR [18506](https://github.com/python/mypy/pull/18506)) |
386 | 394 | * Infer correct types with overloads of `Type[Guard | Is]` (sobolevn, PR [17678](https://github.com/python/mypy/pull/17678)) |
387 | 395 |
|
| 396 | +### Acknowledgements |
| 397 | + |
| 398 | +Thanks to all mypy contributors who contributed to this release: |
| 399 | + |
| 400 | +- |
| 401 | + |
| 402 | +I’d also like to thank my employer, Dropbox, for supporting mypy development. |
| 403 | + |
388 | 404 | ## Mypy 1.15 |
389 | 405 |
|
390 | 406 | We’ve just uploaded mypy 1.15 to the Python Package Index ([PyPI](https://pypi.org/project/mypy/)). |
|
0 commit comments