Skip to content

Commit 3c50a7b

Browse files
author
Pan
committed
Updated appveyor, travis cfg.
Updated readme
1 parent 91b7264 commit 3c50a7b

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ install:
8080
# compiled extensions and are not provided as pre-built wheel packages,
8181
# pip will build them from source using the MSVC compiler matching the
8282
# target Python version and architecture
83-
- "%CMD_IN_ENV% pip install -r requirements_dev.txt"
83+
- "%CMD_IN_ENV% pip install -r requirements.txt"
8484
- "%CMD_IN_ENV% pip install -U wheel setuptools twine"
8585
- git submodule update --init --recursive
8686

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ after_success:
3030
jobs:
3131
include:
3232
- os: osx
33-
# if: tag IS present OR branch = master
33+
if: tag IS present OR branch = master
3434
# tag =~ ^\d+\.\d+(\.\d+)?(-\S*)?$
3535
before_install: skip
3636
install:

README.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ Native code based client with extremely high performance - based on ``libssh2``
1818
:target: https://travis-ci.org/ParallelSSH/parallel-ssh
1919
.. image:: https://coveralls.io/repos/ParallelSSH/parallel-ssh/badge.png?branch=master
2020
:target: https://coveralls.io/r/ParallelSSH/parallel-ssh?branch=master
21+
.. image:: https://img.shields.io/pypi/wheel/parallel-ssh.svg
22+
:target: https://pypi.python.org/pypi/parallel-ssh
2123
.. image:: https://readthedocs.org/projects/parallel-ssh/badge/?version=latest
2224
:target: http://parallel-ssh.readthedocs.org/en/latest/
2325
:alt: Latest documentation
@@ -69,9 +71,9 @@ As of version ``1.2.0``, a new client is supported in ``ParallelSSH`` which offe
6971

7072
The new client is based on ``libssh2`` via the ``ssh2-python`` extension library and supports non-blocking mode natively. In addition, SFTP push/pull operations in the new client have also been implemented in native code, allowing for much greater performance and significantly reduced overhead.
7173

72-
See `this post <https://parallel-ssh.org/post/pssh>`_ for a performance comparison of the available clients.
74+
See `this post <https://parallel-ssh.org/post/parallel-ssh-libssh2>`_ for a performance comparison of the available clients.
7375

74-
To make use of this new client, ``ParallelSSHClient`` can be imported from ``pssh.pssh2_client`` instead. The respective APIs are almost identical, though some features have either not yet been implemented or are not supported by ``libssh2``.
76+
To make use of this new client, ``ParallelSSHClient`` can be imported from ``pssh.pssh2_client`` instead. Their respective APIs are almost identical.
7577

7678
Note that the new client will become the default and will replace the current ``pssh.pssh_client`` in a new major version of the library - ``2.x.x`` - once remaining features have been implemented. The current client will remain available as an option under a new name.
7779

0 commit comments

Comments
 (0)