Skip to content

Commit

Permalink
Merge pull request #334 from adamchainz/readthedocs.io
Browse files Browse the repository at this point in the history
Convert readthedocs links for their .org -> .io migration for hosted projects
  • Loading branch information
eriknw committed Nov 3, 2016
2 parents c95cf7d + 1f7fd84 commit ba9a270
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Toolz

A set of utility functions for iterators, functions, and dictionaries.

See the PyToolz documentation at http://toolz.readthedocs.org
See the PyToolz documentation at https://toolz.readthedocs.io

LICENSE
-------
Expand Down Expand Up @@ -48,7 +48,7 @@ These functions come from the legacy of functional languages for list
processing. They interoperate well to accomplish common complex tasks.

Read our `API
Documentation <http://toolz.readthedocs.org/en/latest/api.html>`__ for
Documentation <https://toolz.readthedocs.io/en/latest/api.html>`__ for
more details.

Example
Expand Down
2 changes: 1 addition & 1 deletion conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ test:
- py.test -x --doctest-modules --pyargs toolz

about:
home: http://toolz.readthedocs.org/
home: https://toolz.readthedocs.io/
license: BSD
10 changes: 5 additions & 5 deletions doc/source/streaming-analytics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -307,9 +307,9 @@ composition, ...) users interested in data analytics might be better served by
using projects specific to data analytics like Pandas_ or SQLAlchemy.


.. _groupby: http://toolz.readthedocs.org/en/latest/api.html#toolz.itertoolz.groupby
.. _join: http://toolz.readthedocs.org/en/latest/api.html#toolz.itertoolz.join
.. _reduceby: http://toolz.readthedocs.org/en/latest/api.html#toolz.itertoolz.reduceby
.. _valmap: http://toolz.readthedocs.org/en/latest/api.html#toolz.itertoolz.valmap
.. _groupby: https://toolz.readthedocs.io/en/latest/api.html#toolz.itertoolz.groupby
.. _join: https://toolz.readthedocs.io/en/latest/api.html#toolz.itertoolz.join
.. _reduceby: https://toolz.readthedocs.io/en/latest/api.html#toolz.itertoolz.reduceby
.. _valmap: https://toolz.readthedocs.io/en/latest/api.html#toolz.dicttoolz.valmap
.. _Pandas: http://pandas.pydata.org/pandas-docs/stable/groupby.html
.. _curried: http://toolz.readthedocs.org/en/latest/curry.html
.. _curried: https://toolz.readthedocs.io/en/latest/curry.html
2 changes: 1 addition & 1 deletion toolz/functoolz.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ class curry(object):
See Also:
toolz.curried - namespace of curried functions
http://toolz.readthedocs.org/en/latest/curry.html
https://toolz.readthedocs.io/en/latest/curry.html
"""
def __init__(self, *args, **kwargs):
if not args:
Expand Down

0 comments on commit ba9a270

Please sign in to comment.