Skip to content

Commit

Permalink
Documentation url fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mosquito committed Nov 28, 2024
1 parent 2a12104 commit 0254a4b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
8 changes: 2 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@
aio-pika
========

.. image:: https://readthedocs.org/projects/aio-pika/badge/?version=latest
:target: https://aio-pika.readthedocs.org/
:alt: ReadTheDocs

.. image:: https://coveralls.io/repos/github/mosquito/aio-pika/badge.svg?branch=master
:target: https://coveralls.io/github/mosquito/aio-pika
:alt: Coveralls
Expand Down Expand Up @@ -349,10 +345,10 @@ If you need no deep dive into **RabbitMQ** details, you can use more high-level
from faststream import FastStream
from faststream.rabbit import RabbitBroker
broker = RabbitBroker("amqp://guest:guest@localhost:5672/")
app = FastStream(broker)
@broker.subscriber("user")
async def user_created(user_id: int):
assert isinstance(user_id, int)
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aio-pika"
version = "9.5.0"
version = "9.5.1"
description = "Wrapper around the aiormq for asyncio and humans"
authors = ["Dmitry Orlov <[email protected]>"]
readme = "README.rst"
Expand Down Expand Up @@ -33,7 +33,7 @@ packages = [{ include = "aio_pika" }]
[tool.poetry.urls]
"Source" = "https://github.com/mosquito/aio-pika"
"Tracker" = "https://github.com/mosquito/aio-pika/issues"
"Documentation" = "https://aio-pika.readthedocs.org/"
"Documentation" = "https://docs.aio-pika.com/"

[tool.poetry.dependencies]
python = "^3.8"
Expand Down

0 comments on commit 0254a4b

Please sign in to comment.