Skip to content

Commit

Permalink
Merge pull request tomerfiliba#279 from adamchainz/readthedocs.io
Browse files Browse the repository at this point in the history
Convert readthedocs link for their .org -> .io migration for hosted projects
  • Loading branch information
henryiii authored and fahhem committed Jun 10, 2016
2 parents 8574a1f + a09cf0e commit fe8753c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
---
* `Paramiko <http://pypi.python.org/pypi/paramiko/1.8.0>`_ integration
(`#10 <https://github.com/tomerfiliba/plumbum/issues/10>`_)
* CLI: now with built-in support for `sub-commands <http://plumbum.readthedocs.org/en/latest/cli.html#sub-commands>`_.
* CLI: now with built-in support for `sub-commands <https://plumbum.readthedocs.io/en/latest/cli.html#sub-commands>`_.
See also: `#43 <https://github.com/tomerfiliba/plumbum/issues/43>`_
* The "import hack" has moved to the package's ``__init__.py``, to make it importable directly
(`#45 <https://github.com/tomerfiliba/plumbum/issues/45>`_)
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
:target: https://ci.appveyor.com/project/HenrySchreiner/plumbum/branch/master
:alt: Windows Build Status
.. image:: https://readthedocs.org/projects/plumbum/badge/
:target: http://plumbum.readthedocs.org/en/latest/
:target: https://plumbum.readthedocs.io/en/latest/
:alt: Documentation Status


Expand All @@ -34,7 +34,7 @@ manipulation, and a programmatic Command-Line Interface (CLI) application toolki
Now let's see some code!

*This is only a teaser; the full documentation can be found at*
`Read the Docs <http://plumbum.readthedocs.org>`_
`Read the Docs <https://plumbum.readthedocs.io>`_

Cheat Sheet
-----------
Expand Down
2 changes: 1 addition & 1 deletion conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ test:
- paramiko

about:
home: http://plumbum.readthedocs.org
home: https://plumbum.readthedocs.io
license: MIT License
summary: 'Plumbum: shell combinators library'

2 changes: 1 addition & 1 deletion plumbum/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
SCP-based upload/download, and a {arg|opt}parse replacement for the easy creation
of command-line interface (CLI) programs.
See http://plumbum.readthedocs.org for full details
See https://plumbum.readthedocs.io for full details
"""
from plumbum.commands import ProcessExecutionError, CommandNotFound, ProcessTimedOut
from plumbum.commands import FG, BG, TEE, TF, RETCODE, ERROUT, NOHUP
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def run(self):
author = "Tomer Filiba",
author_email = "tomerfiliba@gmail.com",
license = "MIT",
url = "http://plumbum.readthedocs.org",
url = "https://plumbum.readthedocs.io",
packages = ["plumbum", "plumbum.cli", "plumbum.commands", "plumbum.machines", "plumbum.path", "plumbum.fs", "plumbum.colorlib"],
platforms = ["POSIX", "Windows"],
provides = ["plumbum"],
Expand Down

0 comments on commit fe8753c

Please sign in to comment.