-
Notifications
You must be signed in to change notification settings - Fork 421
Add support for repeated get params in aiohttp #345
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
base: master
Are you sure you want to change the base?
Conversation
08361bc to
17d95b1
Compare
|
@dedsm thanks for your PR 🙂 can you update your branch? this way we can follow the review/merge of this PR |
tox.ini
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMO this requirement is aiohttp only, so maybe it would better to tweak tox.ini by changing this line (as below) and moving it to the end of this section.
aiohttp: multidict17d95b1 to
f09f709
Compare
|
@lamenezes I guess you were referring to me to update the PR and not @carsonyl I updated the PR and added the proposed changes. I played around with dropping the fixed "<3" requirement for aiohttp in the tox.ini but I think it won't play nice with python < 3.6 |
Oops. I'm really sorry about that 😅 I should pay better attention when replying to multiple PRs |
tests/integration/test_aiohttp.py
Outdated
| @@ -1,3 +1,4 @@ | |||
| import multidict | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think here we'll have to use pytest.importorskip('multidict') to avoid all those CI builds failures. We had to do th same with aiohttp (on line 3)
|
@dedsm can you rebase your branch on master in order to resolve the conflicts ? |
743ab52 to
6865dbe
Compare
|
@arthurHamon2 I rebased it, hopefully it still stands |
6865dbe to
f87b075
Compare
f87b075 to
28416d6
Compare
df3997c to
34d5384
Compare
aiohttp supports receiving list of pairs or multidict in case you want to send repeated ids, this PR adds support for this.