Skip to content

Commit d969552

Browse files
committed
Update references to dbader/pytest-mypy
The repo was migrated to realpython/pytest-mypy on 2022-10-14.
1 parent 4badf3c commit d969552

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ Meta
6363

6464
Daniel Bader – `@dbader_org`_ – https://dbader.org – [email protected]
6565

66-
https://github.com/dbader/pytest-mypy
66+
https://github.com/realpython/pytest-mypy
6767

6868

6969
.. _`MIT`: http://opensource.org/licenses/MIT
70-
.. _`file an issue`: https://github.com/dbader/pytest-mypy/issues
70+
.. _`file an issue`: https://github.com/realpython/pytest-mypy/issues
7171
.. _`pip`: https://pypi.python.org/pypi/pip/
7272
.. _`PyPI`: https://pypi.python.org/pypi
7373
.. _`mypy`: http://mypy-lang.org/

changelog.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,79 @@
11
# Changelog
22

3-
## [0.10.3](https://github.com/dbader/pytest-mypy/milestone/21)
3+
## [0.10.3](https://github.com/realpython/pytest-mypy/milestone/21)
44
* Stop failing if mypy only produces notes.
55

6-
## [0.10.2](https://github.com/dbader/pytest-mypy/milestone/20)
6+
## [0.10.2](https://github.com/realpython/pytest-mypy/milestone/20)
77
* Update and loosen [build-system] requirements.
88

9-
## [0.10.1](https://github.com/dbader/pytest-mypy/milestone/19)
9+
## [0.10.1](https://github.com/realpython/pytest-mypy/milestone/19)
1010
* Work around https://github.com/python/mypy/issues/14042.
1111
* Add support for Python 3.11.
1212

13-
## [0.10.0](https://github.com/dbader/pytest-mypy/milestone/18)
13+
## [0.10.0](https://github.com/realpython/pytest-mypy/milestone/18)
1414
* Drop support for python<3.6.
1515

16-
## [0.9.1](https://github.com/dbader/pytest-mypy/milestone/17)
16+
## [0.9.1](https://github.com/realpython/pytest-mypy/milestone/17)
1717
* Add support for pytest 7.
1818

19-
## [0.9.0](https://github.com/dbader/pytest-mypy/milestone/14)
19+
## [0.9.0](https://github.com/realpython/pytest-mypy/milestone/14)
2020
* Drop support for pytest<4.6.
2121
* Add --mypy-config-file.
2222

23-
## [0.8.1](https://github.com/dbader/pytest-mypy/milestone/16)
23+
## [0.8.1](https://github.com/realpython/pytest-mypy/milestone/16)
2424
* Add a partial workaround for https://github.com/pytest-dev/pytest/issues/8016.
2525

26-
## [0.8.0](https://github.com/dbader/pytest-mypy/milestone/15)
26+
## [0.8.0](https://github.com/realpython/pytest-mypy/milestone/15)
2727
* Add support for Python 3.9.
2828
* Stop injecting `MypyStatusItem` in `pytest_collection_modifyitems` to fix `--looponfail`.
2929

30-
## [0.7.0](https://github.com/dbader/pytest-mypy/milestone/13)
30+
## [0.7.0](https://github.com/realpython/pytest-mypy/milestone/13)
3131
* Remove the upper bound on `python_requires`.
3232
* Require Python 3.5 or greater.
3333
* Enable custom error formatting.
3434
* Fix compatibility with pytest-xdist 2.
3535

36-
## [0.6.2](https://github.com/dbader/pytest-mypy/milestone/12)
36+
## [0.6.2](https://github.com/realpython/pytest-mypy/milestone/12)
3737
* Stop ignoring `.pyi` files.
3838

39-
## [0.6.1](https://github.com/dbader/pytest-mypy/milestone/11)
39+
## [0.6.1](https://github.com/realpython/pytest-mypy/milestone/11)
4040
* Fix a PytestDeprecationWarning emitted by pytest>=5.4
4141

42-
## [0.6.0](https://github.com/dbader/pytest-mypy/milestone/10)
42+
## [0.6.0](https://github.com/realpython/pytest-mypy/milestone/10)
4343
* Inject a test that checks the mypy exit status
4444

45-
## [0.5.0](https://github.com/dbader/pytest-mypy/milestone/9)
45+
## [0.5.0](https://github.com/realpython/pytest-mypy/milestone/9)
4646
* Remove `MypyItem.mypy_path`
4747
* Add support for pytest-xdist
4848
* Add a configurable name to MypyItem node IDs
4949

50-
## [0.4.2](https://github.com/dbader/pytest-mypy/milestone/8)
50+
## [0.4.2](https://github.com/realpython/pytest-mypy/milestone/8)
5151
* Make success message green instead of red
5252
* Remove Python 3.8 beta/dev references
5353
* Stop blacklisting early 0.5x and 0.7x mypy releases
5454

55-
## [0.4.1](https://github.com/dbader/pytest-mypy/milestone/7)
55+
## [0.4.1](https://github.com/realpython/pytest-mypy/milestone/7)
5656
* Stop overlapping `python_version`s in `install_requires`
5757

58-
## [0.4.0](https://github.com/dbader/pytest-mypy/milestone/6)
58+
## [0.4.0](https://github.com/realpython/pytest-mypy/milestone/6)
5959
* Run mypy once per session instead of once per file
6060
* Stop passing --incremental (which mypy now defaults to)
6161
* Support configuring the plugin in a conftest.py
6262
* Add support for Python 3.8
6363

64-
## [0.3.3](https://github.com/dbader/pytest-mypy/milestone/3)
64+
## [0.3.3](https://github.com/realpython/pytest-mypy/milestone/3)
6565
* Register `mypy` marker.
6666
* Add a PEP 518 `[build-system]`
6767
* Add dependency pins for Python 3.4
6868
* Add support for Python 3.7
6969

70-
## [0.3.2](https://github.com/dbader/pytest-mypy/milestone/2)
70+
## [0.3.2](https://github.com/realpython/pytest-mypy/milestone/2)
7171
* Add `mypy` marker to run mypy checks only
7272

73-
## [0.3.1](https://github.com/dbader/pytest-mypy/milestone/1)
73+
## [0.3.1](https://github.com/realpython/pytest-mypy/milestone/1)
7474
* Only depend on `mypy.api`
7575
* Add `--mypy-ignore-missing-imports`
7676
* Invoke `mypy` with `--incremental`
7777

78-
## [0.3.0](https://github.com/dbader/pytest-mypy/milestone/5)
78+
## [0.3.0](https://github.com/realpython/pytest-mypy/milestone/5)
7979
* Change `mypy` dependency to pull in `mypy` instead of `mypy-lang`

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def read(fname):
2020
maintainer="David Tucker",
2121
maintainer_email="[email protected]",
2222
license="MIT",
23-
url="https://github.com/dbader/pytest-mypy",
23+
url="https://github.com/realpython/pytest-mypy",
2424
description="Mypy static type checker plugin for Pytest",
2525
long_description=read("README.rst"),
2626
long_description_content_type="text/x-rst",

0 commit comments

Comments
 (0)