Skip to content

Commit

Permalink
pre-release: 9.0.0-alpha0
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat committed Aug 27, 2023
1 parent 5ce4554 commit 58eedfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Echo installed packages
run: |
pip freeze
poetry show
- name: Test with pytest
run: poetry run pytest -v -rs tests --runslow --cov=./ --cov-report=xml
Expand Down
2 changes: 1 addition & 1 deletion stellar_sdk/client/aiohttp_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ async def __readline(self) -> bytes:
return b"".join(line)


_AIOHTTP_DEPS_INSTALLED = True
try:
import aiohttp
from aiohttp_sse_client.client import EventSource

aiohttp.streams.StreamReader.readline = __readline # type: ignore[assignment]
_AIOHTTP_DEPS_INSTALLED = True
except ImportError:
_AIOHTTP_DEPS_INSTALLED = False

Expand Down

0 comments on commit 58eedfd

Please sign in to comment.