Skip to content

Commit 89f2749

Browse files
committed
update URLs for python-trio org
1 parent 6209783 commit 89f2749

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
`closed` attribute would be `None`, and `send_message()` would be silently
1111
ignored (wsproto < 0.2.0) or leak a `LocalProtocolError` (wsproto >= 0.2.0)
1212
rather than raise `ConnectionClosed`
13-
([#158](https://github.com/HyperionGray/trio-websocket/issues/158))
13+
([#158](https://github.com/python-trio/trio-websocket/issues/158))
1414

1515
## trio-websocket 0.10.1 (2023-03-18)
1616
### Fixed
@@ -20,7 +20,7 @@
2020
defined to cover connections "closed or in the process of closing".
2121
Notably, this fixes `send_message()` leaking a wsproto `LocalProtocolError`
2222
with wsproto >= 1.2.0.
23-
([#175](https://github.com/HyperionGray/trio-websocket/issues/175))
23+
([#175](https://github.com/python-trio/trio-websocket/issues/175))
2424

2525
Released as a minor version increment, since code calling `send_message()`
2626
is expected to handle `ConnectionClosed` anyway.
@@ -34,12 +34,12 @@ is expected to handle `ConnectionClosed` anyway.
3434
## trio-websocket 0.9.2 (2021-02-05)
3535
### Fixed
3636
- the server will now correctly close the TCP stream on a CloseConnection event
37-
([#115](https://github.com/HyperionGray/trio-websocket/issues/115))
37+
([#115](https://github.com/python-trio/trio-websocket/issues/115))
3838

3939
## trio-websocket 0.9.1 (2020-12-06)
4040
### Fixed
4141
- fix client open_websocket_url() when the URL path component is empty
42-
([#148](https://github.com/HyperionGray/trio-websocket/issues/148))
42+
([#148](https://github.com/python-trio/trio-websocket/issues/148))
4343

4444
## trio-websocket 0.9.0 (2020-11-25)
4545

@@ -58,7 +58,7 @@ is expected to handle `ConnectionClosed` anyway.
5858
## trio-websocket 0.8.1 (2020-09-22)
5959
### Fixed
6060
- reader task no longer raises unhandled exception on ClosedResourceError
61-
([#134](https://github.com/HyperionGray/trio-websocket/issues/134))
61+
([#134](https://github.com/python-trio/trio-websocket/issues/134))
6262
- minor issues in example code, documentation, and type-hinting
6363

6464
## ...

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ available here](https://trio-websocket.readthedocs.io).
1515

1616
[![PyPI](https://img.shields.io/pypi/v/trio-websocket.svg?style=flat-square)](https://pypi.org/project/trio-websocket/)
1717
![Python Versions](https://img.shields.io/pypi/pyversions/trio-websocket.svg?style=flat-square)
18-
[![Build Status](https://img.shields.io/github/actions/workflow/status/HyperionGray/trio-websocket/ci.yml)](https://github.com/HyperionGray/trio-websocket/actions/workflows/ci.yml)
18+
[![Build Status](https://img.shields.io/github/actions/workflow/status/python-trio/trio-websocket/ci.yml)](https://github.com/python-trio/trio-websocket/actions/workflows/ci.yml)
1919
[![Read the Docs](https://img.shields.io/readthedocs/trio-websocket.svg)](https://trio-websocket.readthedocs.io)
2020

2121
## Alternatives

docs/contributing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ install additional dependencies that are used for testing and documentation. The
1111
following sequence of commands will clone the repository, create a virtual
1212
environment, and install the developer dependencies::
1313

14-
$ git clone [email protected]:HyperionGray/trio-websocket.git
14+
$ git clone [email protected]:python-trio/trio-websocket.git
1515
$ cd trio-websocket
1616
$ python3 -m venv venv
1717
$ source venv/bin/activate
@@ -182,7 +182,7 @@ To release a new version of this library, we follow this process:
182182
2. Commit ``_version.py``.
183183
3. Create a tag, e.g. ``git tag 1.2.0``.
184184
4. Push the commit and the tag, e.g. ``git push && git push origin 1.2.0``.
185-
5. Wait for `Github CI <https://github.com/HyperionGray/trio-websocket/actions/>`__ to
185+
5. Wait for `Github CI <https://github.com/python-trio/trio-websocket/actions/>`__ to
186186
finish building and ensure that the build is successful.
187187
6. Wait for `Read The Docs <https://trio-websocket.readthedocs.io/en/latest/>`__
188188
to finish building and ensure that the build is successful.

docs/getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ PyPI.
1313

1414
$ pip3 install trio-websocket
1515

16-
You can also install from source. Visit `the project's GitHub page <https://github.com/hyperiongray/trio-websocket/>`__, where you can clone the repository or download a Zip file.
16+
You can also install from source. Visit `the project's GitHub page <https://github.com/python-trio/trio-websocket/>`__, where you can clone the repository or download a Zip file.
1717
Change into the project directory and run the following command.
1818

1919
::

docs/index.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ correctness, and ergonomics. It is based on `wsproto
88
<https://sans-io.readthedocs.io/>`__ state machine that implements most aspects
99
of the WebSocket protocol, including framing, codecs, and events. The
1010
respository is hosted `on GitHub
11-
<https://github.com/hyperiongray/trio-websocket/>`__. This library passes `the
11+
<https://github.com/python-trio/trio-websocket/>`__. This library passes `the
1212
Autobahn Test Suite <https://github.com/crossbario/autobahn-testsuite>`__.
1313

1414
.. image:: https://img.shields.io/pypi/v/trio-websocket.svg?style=flat-square
1515
:alt: PyPI
1616
:target: https://pypi.org/project/trio-websocket/
1717
.. image:: https://img.shields.io/pypi/pyversions/trio-websocket.svg?style=flat-square
1818
:alt: Python Versions
19-
.. image:: https://img.shields.io/github/license/HyperionGray/trio-websocket.svg?style=flat-square
19+
.. image:: https://img.shields.io/github/license/python-trio/trio-websocket.svg?style=flat-square
2020
:alt: MIT License
21-
.. image:: https://img.shields.io/github/actions/workflow/status/HyperionGray/trio-websocket/ci.yml
21+
.. image:: https://img.shields.io/github/actions/workflow/status/python-trio/trio-websocket/ci.yml
2222
:alt: Build Status
23-
:target: https://github.com/HyperionGray/trio-websocket/actions/workflows/ci.yml
23+
:target: https://github.com/python-trio/trio-websocket/actions/workflows/ci.yml
2424

2525
.. toctree::
2626
:maxdepth: 2

docs/recipes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ connection is dropped unexpectedly or takes too long to respond, then
5757
wish to implement additional logic to automatically reconnect.
5858

5959
A heartbeat feature can be enabled in the `example client
60-
<https://github.com/HyperionGray/trio-websocket/blob/master/examples/client.py>`__.
60+
<https://github.com/python-trio/trio-websocket/blob/master/examples/client.py>`__.
6161
with the ``--heartbeat`` flag.

docs/servers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ revisiting the :ref:`server-example`.
3434
.. note::
3535

3636
A more complete example is included `in the repository
37-
<https://github.com/HyperionGray/trio-websocket/blob/master/examples/server.py>`__.
37+
<https://github.com/python-trio/trio-websocket/blob/master/examples/server.py>`__.
3838

3939
As explained in the tutorial, a WebSocket server needs a handler function and a
4040
host/port to bind to. The handler function receives a

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
description='WebSocket library for Trio',
2020
long_description=long_description,
2121
long_description_content_type='text/markdown',
22-
url='https://github.com/HyperionGray/trio-websocket',
22+
url='https://github.com/python-trio/trio-websocket',
2323
author='Mark E. Haase',
2424
author_email='[email protected]',
2525
classifiers=[
@@ -45,7 +45,7 @@
4545
'wsproto>=0.14',
4646
],
4747
project_urls={
48-
'Bug Reports': 'https://github.com/HyperionGray/trio-websocket/issues',
49-
'Source': 'https://github.com/HyperionGray/trio-websocket',
48+
'Bug Reports': 'https://github.com/python-trio/trio-websocket/issues',
49+
'Source': 'https://github.com/python-trio/trio-websocket',
5050
},
5151
)

0 commit comments

Comments
 (0)