diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b627ab73..e8a4d778 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -12,7 +12,7 @@ To encourage more participation, the project has also been moved into a `dedicat ``attrs`` also has a logo now! -.. image:: https://attrs.readthedocs.io/en/latest/_static/attrs_logo.png +.. image:: http://www.attrs.org/en/latest/_static/attrs_logo.png :alt: attrs logo @@ -55,7 +55,7 @@ Changes: - The ``validator`` argument of ``@attr.s`` now can take a ``list`` of validators that all have to pass. `#138 `_ - Validators can now be defined conveniently inline by using the attribute as a decorator. - Check out the `examples `_ to see it in action! + Check out the `examples `_ to see it in action! `#143 `_ - ``attr.make_class()`` now accepts the keyword argument ``bases`` which allows for subclassing. `#152 `_ diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index fae9cd97..fa82ca28 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -165,13 +165,13 @@ Thank you for considering contributing to ``attrs``! .. _`good test docstrings`: https://jml.io/pages/test-docstrings.html .. _`Code of Conduct`: https://github.com/python-attrs/attrs/blob/master/CODE_OF_CONDUCT.rst .. _changelog: https://github.com/python-attrs/attrs/blob/master/CHANGELOG.rst -.. _`backward compatibility`: https://attrs.readthedocs.io/en/latest/backward-compatibility.html +.. _`backward compatibility`: http://www.attrs.org/en/latest/backward-compatibility.html .. _tox: https://tox.readthedocs.io/ .. _pyenv: https://github.com/pyenv/pyenv .. _reStructuredText: http://www.sphinx-doc.org/en/stable/rest.html .. _semantic newlines: http://rhodesmill.org/brandon/2012/one-sentence-per-line/ .. _examples page: https://github.com/python-attrs/attrs/blob/master/docs/examples.rst -.. _Hypothesis: https://hypothesis.readthedocs.org +.. _Hypothesis: https://hypothesis.readthedocs.io/ .. _CI: https://travis-ci.org/python-attrs/attrs/ .. _`team of volunteers`: https://github.com/python-attrs .. _BDFL: https://en.wikipedia.org/wiki/Benevolent_dictator_for_life diff --git a/PULL_REQUEST_TEMPLATE.md b/PULL_REQUEST_TEMPLATE.md index 34b7b317..2a9d7125 100644 --- a/PULL_REQUEST_TEMPLATE.md +++ b/PULL_REQUEST_TEMPLATE.md @@ -1,6 +1,6 @@ # Pull Request Check List -This is just a reminder about the most common mistakes. Please make sure that you tick all *appropriate* boxes. But please read our [contribution guide](https://attrs.readthedocs.io/en/latest/contributing.html) at least once, it will save you unnecessary review cycles! +This is just a reminder about the most common mistakes. Please make sure that you tick all *appropriate* boxes. But please read our [contribution guide](http://www.attrs.org/en/latest/contributing.html) at least once, it will save you unnecessary review cycles! - [ ] Added **tests** for changed code. - [ ] New features have been added to our [Hypothesis testing strategy](https://github.com/python-attrs/attrs/blob/master/tests/utils.py). diff --git a/README.rst b/README.rst index 4f1f5d5a..8d12ed65 100644 --- a/README.rst +++ b/README.rst @@ -1,4 +1,4 @@ -.. image:: https://attrs.readthedocs.io/en/latest/_static/attrs_logo.png +.. image:: http://www.attrs.org/en/latest/_static/attrs_logo.png :alt: attrs Logo ================================== @@ -6,7 +6,7 @@ attrs: Classes Without Boilerplate ================================== .. image:: https://readthedocs.org/projects/attrs/badge/?version=stable - :target: https://attrs.readthedocs.io/en/stable/?badge=stable + :target: http://www.attrs.org/en/stable/?badge=stable :alt: Documentation Status .. image:: https://travis-ci.org/python-attrs/attrs.svg?branch=master @@ -101,9 +101,9 @@ Project Information =================== ``attrs`` is released under the `MIT `_ license, -its documentation lives at `Read the Docs `_, +its documentation lives at `Read the Docs `_, the code on `GitHub `_, and the latest release on `PyPI `_. It’s rigorously tested on Python 2.7, 3.4+, and PyPy. -If you'd like to contribute you're most welcome and we've written `a little guide `_ to get you started! +If you'd like to contribute you're most welcome and we've written `a little guide `_ to get you started! diff --git a/src/attr/__init__.py b/src/attr/__init__.py index b10f8e89..0087f7e4 100644 --- a/src/attr/__init__.py +++ b/src/attr/__init__.py @@ -30,7 +30,7 @@ __version__ = "17.1.0.dev0" __title__ = "attrs" __description__ = "Classes Without Boilerplate" -__uri__ = "https://attrs.readthedocs.io/" +__uri__ = "http://www.attrs.org/" __doc__ = __description__ + " <" + __uri__ + ">" __author__ = "Hynek Schlawack"