Skip to content

Commit 58d1a95

Browse files
committedMar 23, 2018
Repo move
1 parent 34539a0 commit 58d1a95

File tree

2 files changed

+11
-15
lines changed

2 files changed

+11
-15
lines changed
 

‎README.rst

+9-13
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
exec-helpers
22
============
33

4-
.. image:: https://travis-ci.org/penguinolog/exec-helpers.svg?branch=master
5-
:target: https://travis-ci.org/penguinolog/exec-helpers
6-
.. image:: https://img.shields.io/appveyor/ci/penguinolog/exec-helpers.svg
7-
:target: https://ci.appveyor.com/project/penguinolog/exec-helpers
8-
.. image:: https://coveralls.io/repos/github/penguinolog/exec-helpers/badge.svg?branch=master
9-
:target: https://coveralls.io/github/penguinolog/exec-helpers?branch=master
4+
.. image:: https://travis-ci.org/python-useful-helpers/exec-helpers.svg?branch=master
5+
:target: https://travis-ci.org/python-useful-helpers/exec-helpers
6+
.. image:: https://coveralls.io/repos/github/python-useful-helpers/exec-helpers/badge.svg?branch=master
7+
:target: https://coveralls.io/github/python-useful-helpers/exec-helpers?branch=master
108
.. image:: https://readthedocs.org/projects/exec-helpers/badge/?version=latest
119
:target: http://exec-helpers.readthedocs.io/
1210
:alt: Documentation Status
@@ -16,8 +14,8 @@ exec-helpers
1614
:target: https://pypi.python.org/pypi/exec-helpers
1715
.. image:: https://img.shields.io/pypi/status/exec-helpers.svg
1816
:target: https://pypi.python.org/pypi/exec-helpers
19-
.. image:: https://img.shields.io/github/license/penguinolog/exec-helpers.svg
20-
:target: https://raw.githubusercontent.com/penguinolog/exec-helpers/master/LICENSE
17+
.. image:: https://img.shields.io/github/license/python-useful-helpers/exec-helpers.svg
18+
:target: https://raw.githubusercontent.com/python-useful-helpers/exec-helpers/master/LICENSE
2119

2220
Execution helpers for simplified usage of subprocess and ssh.
2321
Why another subprocess wrapper and why no clear `paramiko`?
@@ -36,7 +34,7 @@ Pros:
3634
* The same API for subprocess and ssh.
3735
* Connection memorize.
3836
* Free software: Apache license
39-
* Open Source: https://github.com/penguinolog/exec-helpers
37+
* Open Source: https://github.com/python-useful-helpers/exec-helpers
4038
* PyPI packaged: https://pypi.python.org/pypi/exec-helpers
4139
* Self-documented code: docstrings with types in comments
4240
* Tested: see bages on top
@@ -314,8 +312,6 @@ CI systems
314312
==========
315313
For code checking several CI systems is used in parallel:
316314

317-
1. `Travis CI: <https://travis-ci.org/penguinolog/exec-helpers>`_ is used for checking: PEP8, pylint, bandit, installation possibility and unit tests. Also it's publishes coverage on coveralls.
315+
1. `Travis CI: <https://travis-ci.org/python-useful-helpers/exec-helpers>`_ is used for checking: PEP8, pylint, bandit, installation possibility and unit tests. Also it's publishes coverage on coveralls.
318316

319-
2. `AppVeyor: <https://ci.appveyor.com/project/penguinolog/exec-helpers>`_ is used for checking windows compatibility.
320-
321-
3. `coveralls: <https://coveralls.io/github/penguinolog/exec-helpers>`_ is used for coverage display.
317+
2. `coveralls: <https://coveralls.io/github/python-useful-helpers/exec-helpers>`_ is used for coverage display.

‎exec_helpers/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@
4545
'ExecResult',
4646
)
4747

48-
__version__ = '1.1.0'
48+
__version__ = '1.1.1'
4949
__author__ = "Alexey Stepanov"
5050
__author_email__ = 'penguinolog@gmail.com'
51-
__url__ = 'https://github.com/penguinolog/exec-helpers'
51+
__url__ = 'https://github.com/python-useful-helpers/exec-helpers'
5252
__description__ = (
5353
"Execution helpers for simplified usage of subprocess and ssh."
5454
)

0 commit comments

Comments
 (0)
Please sign in to comment.