diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 8768342..26b71fb 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -4,10 +4,6 @@ Contributing Contributions are very welcome. Tests can be run with `tox `_. Please ensure the coverage at least stays the same before you submit a pull request. -.. image:: https://travis-ci.org/dbader/pytest-mypy.svg?branch=master - :target: https://travis-ci.org/dbader/pytest-mypy - :alt: See Build Status on Travis CI - Development Environment Setup ----------------------------- @@ -21,7 +17,7 @@ Here's how to install pytest-mypy in development mode so you can test your chang How to publish a new version to PyPI ------------------------------------ -Push a tag, and Travis CI will publish it automatically. +Push a tag, and the release will be published automatically. To publish manually: .. code-block:: bash diff --git a/README.rst b/README.rst index 8c91fea..a71c336 100644 --- a/README.rst +++ b/README.rst @@ -63,11 +63,11 @@ Meta Daniel Bader – `@dbader_org`_ – https://dbader.org – mail@dbader.org -https://github.com/dbader/pytest-mypy +https://github.com/realpython/pytest-mypy .. _`MIT`: http://opensource.org/licenses/MIT -.. _`file an issue`: https://github.com/dbader/pytest-mypy/issues +.. _`file an issue`: https://github.com/realpython/pytest-mypy/issues .. _`pip`: https://pypi.python.org/pypi/pip/ .. _`PyPI`: https://pypi.python.org/pypi .. _`mypy`: http://mypy-lang.org/ diff --git a/changelog.md b/changelog.md index d0393fe..ef37f37 100644 --- a/changelog.md +++ b/changelog.md @@ -1,79 +1,3 @@ # Changelog -## [0.10.3](https://github.com/dbader/pytest-mypy/milestone/21) -* Stop failing if mypy only produces notes. - -## [0.10.2](https://github.com/dbader/pytest-mypy/milestone/20) -* Update and loosen [build-system] requirements. - -## [0.10.1](https://github.com/dbader/pytest-mypy/milestone/19) -* Work around https://github.com/python/mypy/issues/14042. -* Add support for Python 3.11. - -## [0.10.0](https://github.com/dbader/pytest-mypy/milestone/18) -* Drop support for python<3.6. - -## [0.9.1](https://github.com/dbader/pytest-mypy/milestone/17) -* Add support for pytest 7. - -## [0.9.0](https://github.com/dbader/pytest-mypy/milestone/14) -* Drop support for pytest<4.6. -* Add --mypy-config-file. - -## [0.8.1](https://github.com/dbader/pytest-mypy/milestone/16) -* Add a partial workaround for https://github.com/pytest-dev/pytest/issues/8016. - -## [0.8.0](https://github.com/dbader/pytest-mypy/milestone/15) -* Add support for Python 3.9. -* Stop injecting `MypyStatusItem` in `pytest_collection_modifyitems` to fix `--looponfail`. - -## [0.7.0](https://github.com/dbader/pytest-mypy/milestone/13) -* Remove the upper bound on `python_requires`. -* Require Python 3.5 or greater. -* Enable custom error formatting. -* Fix compatibility with pytest-xdist 2. - -## [0.6.2](https://github.com/dbader/pytest-mypy/milestone/12) -* Stop ignoring `.pyi` files. - -## [0.6.1](https://github.com/dbader/pytest-mypy/milestone/11) -* Fix a PytestDeprecationWarning emitted by pytest>=5.4 - -## [0.6.0](https://github.com/dbader/pytest-mypy/milestone/10) -* Inject a test that checks the mypy exit status - -## [0.5.0](https://github.com/dbader/pytest-mypy/milestone/9) -* Remove `MypyItem.mypy_path` -* Add support for pytest-xdist -* Add a configurable name to MypyItem node IDs - -## [0.4.2](https://github.com/dbader/pytest-mypy/milestone/8) -* Make success message green instead of red -* Remove Python 3.8 beta/dev references -* Stop blacklisting early 0.5x and 0.7x mypy releases - -## [0.4.1](https://github.com/dbader/pytest-mypy/milestone/7) -* Stop overlapping `python_version`s in `install_requires` - -## [0.4.0](https://github.com/dbader/pytest-mypy/milestone/6) -* Run mypy once per session instead of once per file -* Stop passing --incremental (which mypy now defaults to) -* Support configuring the plugin in a conftest.py -* Add support for Python 3.8 - -## [0.3.3](https://github.com/dbader/pytest-mypy/milestone/3) -* Register `mypy` marker. -* Add a PEP 518 `[build-system]` -* Add dependency pins for Python 3.4 -* Add support for Python 3.7 - -## [0.3.2](https://github.com/dbader/pytest-mypy/milestone/2) -* Add `mypy` marker to run mypy checks only - -## [0.3.1](https://github.com/dbader/pytest-mypy/milestone/1) -* Only depend on `mypy.api` -* Add `--mypy-ignore-missing-imports` -* Invoke `mypy` with `--incremental` - -## [0.3.0](https://github.com/dbader/pytest-mypy/milestone/5) -* Change `mypy` dependency to pull in `mypy` instead of `mypy-lang` +The Changelog has moved to https://github.com/realpython/pytest-mypy/releases diff --git a/setup.py b/setup.py index 9dbc660..6abbd5a 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def read(fname): maintainer="David Tucker", maintainer_email="david@tucker.name", license="MIT", - url="https://github.com/dbader/pytest-mypy", + url="https://github.com/realpython/pytest-mypy", description="Mypy static type checker plugin for Pytest", long_description=read("README.rst"), long_description_content_type="text/x-rst",