You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Removed the deprecated`--force-uppercase-builtins` flag. It has been a no-op since mypy 1.17.0.
16
+
The`--force-uppercase-builtins` flag was deprecated and has been a no-op since mypy 1.17.0.
17
+
Since mypy has dropped support for Python 3.9, the`--force-union-syntax` flag is no longer
18
+
necessary.
17
19
18
20
Contributed by Marc Mueller (PR[20410](https://github.com/python/mypy/pull/20410))
19
-
20
-
###Removed Flag:`--force-union-syntax`
21
-
22
-
Mypy only supports Python 3.10+. Removed the`--force-union-syntax` flag as it's no longer necessary.
23
-
24
-
Contributed by Marc Mueller (PR[20405](https://github.com/python/mypy/pull/20405))
21
+
and (PR[20405](https://github.com/python/mypy/pull/20405)).
25
22
26
23
##Mypy 1.19
27
24
@@ -228,6 +225,17 @@ Related PRs:
228
225
229
226
Please see[git log](https://github.com/python/typeshed/commits/main?after=ebce8d766b41fbf4d83cf47c1297563a9508ff60+0&branch=main&path=stdlib) for full list of standard library typeshed stub changes.
230
227
228
+
###Mypy 1.19.1
229
+
230
+
- Fix noncommutative joins with bounded TypeVars (Shantanu, PR[20345](https://github.com/python/mypy/pull/20345))
231
+
- Respect output format for cached runs by serializing raw errors in cache metas (Ivan Levkivskyi, PR[20372](https://github.com/python/mypy/pull/20372))
232
+
- Allow`types.NoneType` in match cases (A5rocks, PR[20383](https://github.com/python/mypy/pull/20383))
233
+
- Fix mypyc generator regression with empty tuple (BobTheBuidler, PR[20371](https://github.com/python/mypy/pull/20371))