Skip to content

Commit e5ab77c

Browse files
committed
Update url to new org
1 parent 78746bd commit e5ab77c

File tree

8 files changed

+26
-26
lines changed

8 files changed

+26
-26
lines changed

CHANGES

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Here you can find the recent changes to libtmux
66

77
- :release:`0.7.8 <2018-03-04>`
88
- :support:`-` Port ``retry`` function from tmuxp
9-
(https://github.com/tony/tmuxp/issues/354)
9+
(https://github.com/tmux-python/tmuxp/issues/354)
1010

1111
- :release:`0.7.7 <2017-11-10>`
1212
- :support:`-` Don't add -x/-y in tmux >= 2.6 if running tmuxp from inside
@@ -116,7 +116,7 @@ Here you can find the recent changes to libtmux
116116
- :release:`0.1.0 <2016-05-22>`
117117
- libtmux forked from `tmuxp`_.
118118

119-
.. _tmuxp: https://github.com/tony/tmuxp
119+
.. _tmuxp: https://github.com/tmux-python/tmuxp
120120
.. _@askedrelic: https://github.com/askedrelic
121121

122122
.. # vim: set filetype=rst:

README.rst

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -180,25 +180,25 @@ Project details
180180
============== ==========================================================
181181
tmux support 1.8, 1.9a, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6
182182
python support 2.7, >= 3.3, pypy, pypy3
183-
Source https://github.com/tony/libtmux
183+
Source https://github.com/tmux-python/libtmux
184184
Docs https://libtmux.git-pull.com
185185
API https://libtmux.git-pull.com/en/latest/api.html
186186
Changelog https://libtmux.git-pull.com/en/latest/history.html
187-
Issues https://github.com/tony/libtmux/issues
188-
Travis http://travis-ci.org/tony/libtmux
189-
Test Coverage https://codecov.io/gh/tony/libtmux
187+
Issues https://github.com/tmux-python/libtmux/issues
188+
Travis http://travis-ci.org/tmux-python/libtmux
189+
Test Coverage https://codecov.io/gh/tmux-python/libtmux
190190
pypi https://pypi.python.org/pypi/libtmux
191191
Open Hub https://www.openhub.net/p/libtmux-python
192192
License `BSD`_.
193193
git repo .. code-block:: bash
194194

195-
$ git clone https://github.com/tony/libtmux.git
195+
$ git clone https://github.com/tmux-python/libtmux.git
196196
install stable .. code-block:: bash
197197

198198
$ pip install libtmux
199199
install dev .. code-block:: bash
200200

201-
$ git clone https://github.com/tony/libtmux.git libtmux
201+
$ git clone https://github.com/tmux-python/libtmux.git libtmux
202202
$ cd ./libtmux
203203
$ virtualenv .venv
204204
$ source .venv/bin/activate
@@ -215,15 +215,15 @@ tests .. code-block:: bash
215215
:alt: Python Package
216216
:target: http://badge.fury.io/py/libtmux
217217

218-
.. |build-status| image:: https://img.shields.io/travis/tony/libtmux.svg
218+
.. |build-status| image:: https://img.shields.io/travis/tmux-python/libtmux.svg
219219
:alt: Build Status
220-
:target: https://travis-ci.org/tony/libtmux
220+
:target: https://travis-ci.org/tmux-python/libtmux
221221

222-
.. |coverage| image:: https://codecov.io/gh/tony/libtmux/branch/master/graph/badge.svg
222+
.. |coverage| image:: https://codecov.io/gh/tmux-python/libtmux/branch/master/graph/badge.svg
223223
:alt: Code Coverage
224-
:target: https://codecov.io/gh/tony/libtmux
224+
:target: https://codecov.io/gh/tmux-python/libtmux
225225

226-
.. |license| image:: https://img.shields.io/github/license/tony/libtmux.svg
226+
.. |license| image:: https://img.shields.io/github/license/tmux-python/libtmux.svg
227227
:alt: License
228228

229229
.. |docs| image:: https://readthedocs.org/projects/libtmux/badge/?version=latest

doc/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828

2929
releases_unstable_prehistory = True
3030
releases_document_name = "history"
31-
releases_issue_uri = "https://github.com/tony/libtmux/issues/%s"
32-
releases_release_uri = "https://github.com/tony/libtmux/tree/v%s"
31+
releases_issue_uri = "https://github.com/tmux-python/libtmux/issues/%s"
32+
releases_release_uri = "https://github.com/tmux-python/libtmux/tree/v%s"
3333

3434
templates_path = ['_templates']
3535

@@ -52,7 +52,7 @@
5252
html_theme = 'alagitpull'
5353
html_theme_options = {
5454
'logo': 'img/libtmux.svg',
55-
'github_user': 'tony',
55+
'github_user': 'tmux-python',
5656
'github_repo': 'libtmux',
5757
'github_type': 'star',
5858
'github_banner': True,

doc/developing.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ To begin developing, check out the code from github:
2626

2727
.. code-block:: bash
2828
29-
$ git clone git@github.com:tony/libtmux.git
29+
$ git clone git@github.com:tmux-python/libtmux.git
3030
$ cd libtmux
3131
3232
Now create a virtualenv, if you don't know how to, you can create a
@@ -177,6 +177,6 @@ tested are pypy, pypy3, 2.7 and >= 3.3. The `travis build site`_ uses this
177177
:language: yaml
178178

179179
.. _travis-ci: http://www.travis-ci.org
180-
.. _travis build site: http://www.travis-ci.org/tony/libtmux
181-
.. _.travis.yml: https://github.com/tony/libtmux/blob/master/.travis.yml
182-
.. _issue on github: https://github.com/tony/libtmux/issues
180+
.. _travis build site: http://www.travis-ci.org/tmux-python/libtmux
181+
.. _.travis.yml: https://github.com/tmux-python/libtmux/blob/master/.travis.yml
182+
.. _issue on github: https://github.com/tmux-python/libtmux/issues

doc/quickstart.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,6 @@ sessions in the background. :)
315315
and our `test suite`_ (see :ref:`developing`.)
316316

317317
.. _sliderepl: http://discorporate.us/projects/sliderepl/
318-
.. _workspacebuilder.py: https://github.com/tony/libtmux/blob/master/libtmux/workspacebuilder.py
319-
.. _test suite: https://github.com/tony/libtmux/tree/master/tests
318+
.. _workspacebuilder.py: https://github.com/tmux-python/libtmux/blob/master/libtmux/workspacebuilder.py
319+
.. _test suite: https://github.com/tmux-python/libtmux/tree/master/tests
320320
.. _ptpython: https://github.com/jonathanslenders/ptpython

libtmux/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ def has_minimum_version(raises=True):
504504
.. versionchanged:: 0.1.7
505505
Versions will now remove trailing letters per `Issue 55`_.
506506
507-
.. _Issue 55: https://github.com/tony/tmuxp/issues/55.
507+
.. _Issue 55: https://github.com/tmux-python/tmuxp/issues/55.
508508
509509
"""
510510

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""libtmux lives at <https://github.com/tony/libtmux>.
1+
"""libtmux lives at <https://github.com/tmux-python/libtmux>.
22
33
libtmux
44
-------
@@ -42,7 +42,7 @@ def run_tests(self):
4242
setup(
4343
name=about['__title__'],
4444
version=about['__version__'],
45-
url='http://github.com/tony/libtmux/',
45+
url='http://github.com/tmux-python/libtmux/',
4646
download_url='https://pypi.python.org/pypi/libtmux',
4747
license=about['__license__'],
4848
author=about['__author__'],

tests/test_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class Hi(object):
6969
def test_ignores_letter_versions():
7070
"""Ignore letters such as 1.8b.
7171
72-
See ticket https://github.com/tony/tmuxp/issues/55.
72+
See ticket https://github.com/tmux-python/tmuxp/issues/55.
7373
7474
In version 0.1.7 this is adjusted to use LooseVersion, in order to
7575
allow letters.

0 commit comments

Comments
 (0)