|
1 | 1 | # Changelog |
2 | 2 |
|
3 | | -## [0.10.3](https://github.com/dbader/pytest-mypy/milestone/21) |
| 3 | +## [0.10.3](https://github.com/realpython/pytest-mypy/milestone/21) |
4 | 4 | * Stop failing if mypy only produces notes. |
5 | 5 |
|
6 | | -## [0.10.2](https://github.com/dbader/pytest-mypy/milestone/20) |
| 6 | +## [0.10.2](https://github.com/realpython/pytest-mypy/milestone/20) |
7 | 7 | * Update and loosen [build-system] requirements. |
8 | 8 |
|
9 | | -## [0.10.1](https://github.com/dbader/pytest-mypy/milestone/19) |
| 9 | +## [0.10.1](https://github.com/realpython/pytest-mypy/milestone/19) |
10 | 10 | * Work around https://github.com/python/mypy/issues/14042. |
11 | 11 | * Add support for Python 3.11. |
12 | 12 |
|
13 | | -## [0.10.0](https://github.com/dbader/pytest-mypy/milestone/18) |
| 13 | +## [0.10.0](https://github.com/realpython/pytest-mypy/milestone/18) |
14 | 14 | * Drop support for python<3.6. |
15 | 15 |
|
16 | | -## [0.9.1](https://github.com/dbader/pytest-mypy/milestone/17) |
| 16 | +## [0.9.1](https://github.com/realpython/pytest-mypy/milestone/17) |
17 | 17 | * Add support for pytest 7. |
18 | 18 |
|
19 | | -## [0.9.0](https://github.com/dbader/pytest-mypy/milestone/14) |
| 19 | +## [0.9.0](https://github.com/realpython/pytest-mypy/milestone/14) |
20 | 20 | * Drop support for pytest<4.6. |
21 | 21 | * Add --mypy-config-file. |
22 | 22 |
|
23 | | -## [0.8.1](https://github.com/dbader/pytest-mypy/milestone/16) |
| 23 | +## [0.8.1](https://github.com/realpython/pytest-mypy/milestone/16) |
24 | 24 | * Add a partial workaround for https://github.com/pytest-dev/pytest/issues/8016. |
25 | 25 |
|
26 | | -## [0.8.0](https://github.com/dbader/pytest-mypy/milestone/15) |
| 26 | +## [0.8.0](https://github.com/realpython/pytest-mypy/milestone/15) |
27 | 27 | * Add support for Python 3.9. |
28 | 28 | * Stop injecting `MypyStatusItem` in `pytest_collection_modifyitems` to fix `--looponfail`. |
29 | 29 |
|
30 | | -## [0.7.0](https://github.com/dbader/pytest-mypy/milestone/13) |
| 30 | +## [0.7.0](https://github.com/realpython/pytest-mypy/milestone/13) |
31 | 31 | * Remove the upper bound on `python_requires`. |
32 | 32 | * Require Python 3.5 or greater. |
33 | 33 | * Enable custom error formatting. |
34 | 34 | * Fix compatibility with pytest-xdist 2. |
35 | 35 |
|
36 | | -## [0.6.2](https://github.com/dbader/pytest-mypy/milestone/12) |
| 36 | +## [0.6.2](https://github.com/realpython/pytest-mypy/milestone/12) |
37 | 37 | * Stop ignoring `.pyi` files. |
38 | 38 |
|
39 | | -## [0.6.1](https://github.com/dbader/pytest-mypy/milestone/11) |
| 39 | +## [0.6.1](https://github.com/realpython/pytest-mypy/milestone/11) |
40 | 40 | * Fix a PytestDeprecationWarning emitted by pytest>=5.4 |
41 | 41 |
|
42 | | -## [0.6.0](https://github.com/dbader/pytest-mypy/milestone/10) |
| 42 | +## [0.6.0](https://github.com/realpython/pytest-mypy/milestone/10) |
43 | 43 | * Inject a test that checks the mypy exit status |
44 | 44 |
|
45 | | -## [0.5.0](https://github.com/dbader/pytest-mypy/milestone/9) |
| 45 | +## [0.5.0](https://github.com/realpython/pytest-mypy/milestone/9) |
46 | 46 | * Remove `MypyItem.mypy_path` |
47 | 47 | * Add support for pytest-xdist |
48 | 48 | * Add a configurable name to MypyItem node IDs |
49 | 49 |
|
50 | | -## [0.4.2](https://github.com/dbader/pytest-mypy/milestone/8) |
| 50 | +## [0.4.2](https://github.com/realpython/pytest-mypy/milestone/8) |
51 | 51 | * Make success message green instead of red |
52 | 52 | * Remove Python 3.8 beta/dev references |
53 | 53 | * Stop blacklisting early 0.5x and 0.7x mypy releases |
54 | 54 |
|
55 | | -## [0.4.1](https://github.com/dbader/pytest-mypy/milestone/7) |
| 55 | +## [0.4.1](https://github.com/realpython/pytest-mypy/milestone/7) |
56 | 56 | * Stop overlapping `python_version`s in `install_requires` |
57 | 57 |
|
58 | | -## [0.4.0](https://github.com/dbader/pytest-mypy/milestone/6) |
| 58 | +## [0.4.0](https://github.com/realpython/pytest-mypy/milestone/6) |
59 | 59 | * Run mypy once per session instead of once per file |
60 | 60 | * Stop passing --incremental (which mypy now defaults to) |
61 | 61 | * Support configuring the plugin in a conftest.py |
62 | 62 | * Add support for Python 3.8 |
63 | 63 |
|
64 | | -## [0.3.3](https://github.com/dbader/pytest-mypy/milestone/3) |
| 64 | +## [0.3.3](https://github.com/realpython/pytest-mypy/milestone/3) |
65 | 65 | * Register `mypy` marker. |
66 | 66 | * Add a PEP 518 `[build-system]` |
67 | 67 | * Add dependency pins for Python 3.4 |
68 | 68 | * Add support for Python 3.7 |
69 | 69 |
|
70 | | -## [0.3.2](https://github.com/dbader/pytest-mypy/milestone/2) |
| 70 | +## [0.3.2](https://github.com/realpython/pytest-mypy/milestone/2) |
71 | 71 | * Add `mypy` marker to run mypy checks only |
72 | 72 |
|
73 | | -## [0.3.1](https://github.com/dbader/pytest-mypy/milestone/1) |
| 73 | +## [0.3.1](https://github.com/realpython/pytest-mypy/milestone/1) |
74 | 74 | * Only depend on `mypy.api` |
75 | 75 | * Add `--mypy-ignore-missing-imports` |
76 | 76 | * Invoke `mypy` with `--incremental` |
77 | 77 |
|
78 | | -## [0.3.0](https://github.com/dbader/pytest-mypy/milestone/5) |
| 78 | +## [0.3.0](https://github.com/realpython/pytest-mypy/milestone/5) |
79 | 79 | * Change `mypy` dependency to pull in `mypy` instead of `mypy-lang` |
0 commit comments