Skip to content

Commit

Permalink
3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wkpn committed Mar 9, 2021
1 parent 03aa5bd commit 85ac8bc
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG-ru.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Изменения
=========

`3.2.1`
-------

* апдейт зависимостей
* апдейт тестов


`3.2.0`
-------

Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
=========

`3.2.1`
-------

* update requirements
* update tests


`3.2.0`
-------

Expand Down
2 changes: 1 addition & 1 deletion README-ru.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
>>> async with Api() as client:
... boards = await client.get_boards()
>>> ...
... ...
Получить все доски

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Or you can use it as a context manager
>>> async with Api() as client:
... boards = await client.get_boards()
>>> ...
... ...
Get all boards

Expand Down
2 changes: 1 addition & 1 deletion aio2ch/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.2.0"
__version__ = "3.2.1"
6 changes: 3 additions & 3 deletions aio2ch/_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
from ._helpers import (
BOARDS_LIST,
SORTING_METHODS,
is_url_like,
get_board_and_thread_from_url
get_board_and_thread_from_url,
is_url_like
)
from ._objects import (
MEDIA_TYPES,
Expand Down Expand Up @@ -60,7 +60,7 @@ async def get_boards(self,
"""

status, boards = await self._get(url=f'{self._api_client.api_url}/boards.json')
boards = boards['boards']
boards = boards["boards"]
boards = tuple(Board(board) for board in boards)

if return_status:
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
httpx[http2]==0.16.*
aiofiles
httpx[http2]==0.17.0
aiofiles==0.6.0
click
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def thread(thread_as_number):

@pytest.fixture
def thread_as_number():
return 31814
return 29322


@pytest.fixture
Expand Down

0 comments on commit 85ac8bc

Please sign in to comment.