Use our domain
This commit is contained in:
parent
b6ead28967
commit
beca344034
|
@ -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 <https://github.com/python-attrs/attrs/issues/138>`_
|
||||
- Validators can now be defined conveniently inline by using the attribute as a decorator.
|
||||
Check out the `examples <https://attrs.readthedocs.io/en/stable/examples.html#validators>`_ to see it in action!
|
||||
Check out the `examples <http://www.attrs.org/en/stable/examples.html#validators>`_ to see it in action!
|
||||
`#143 <https://github.com/python-attrs/attrs/issues/143>`_
|
||||
- ``attr.make_class()`` now accepts the keyword argument ``bases`` which allows for subclassing.
|
||||
`#152 <https://github.com/python-attrs/attrs/pull/152>`_
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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).
|
||||
|
|
|
@ -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 <https://choosealicense.com/licenses/mit/>`_ license,
|
||||
its documentation lives at `Read the Docs <https://attrs.readthedocs.io/>`_,
|
||||
its documentation lives at `Read the Docs <http://www.attrs.org/>`_,
|
||||
the code on `GitHub <https://github.com/python-attrs/attrs>`_,
|
||||
and the latest release on `PyPI <https://pypi.org/project/attrs/>`_.
|
||||
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 <https://attrs.readthedocs.io/en/latest/contributing.html>`_ to get you started!
|
||||
If you'd like to contribute you're most welcome and we've written `a little guide <http://www.attrs.org/en/latest/contributing.html>`_ to get you started!
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue