Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use aioresponses from master branch #279

Merged
merged 1 commit into from
Nov 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
python-version:
- "3.10"
- "3.11"
# - "3.12"
- "3.12"

steps:
- name: Check out repository
Expand Down
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
aioresponses==0.7.4
git+https://github.com/pnuckowski/aioresponses.git@master#aioresponses==0.7.5
coverage==7.3.2
mypy==1.7.0
pytest-asyncio==0.21.1
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
aiohttp>=3.9.0b0;python_version>='3.12'
aiohttp>=3.7.0;python_version<'3.12'
aiohttp>=3.7.0
orjson
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[tox]
envlist = py310, py311, lint, typing, coverage
envlist = py310, py311, py312, lint, typing, coverage
skip_missing_interpreters = True

[gh-actions]
python =
3.10: py310, lint, typing, coverage
3.11: py311
; 3.12: py312
3.12: py312

[testenv]
commands =
Expand Down