Closed felixfontein closed 2 months ago
antsibull compatibility fails because of pyre...
Ping @gotmax23
❌ Failed to cleanly apply 87e294e058f9edbf9d9cebfb0da6ede34b275e46 on top of patchback/backports/stable-2/87e294e058f9edbf9d9cebfb0da6ede34b275e46/pr-163
origin
remote.upstream
. If you don't
have it, here's how you can add it:
$ git remote add upstream https://github.com/ansible-community/antsibull-core.git
$ git fetch upstream
$ git checkout -b patchback/backports/stable-2/87e294e058f9edbf9d9cebfb0da6ede34b275e46/pr-163 upstream/stable-2
$ git cherry-pick -x 87e294e058f9edbf9d9cebfb0da6ede34b275e46
If it'll yell at you with something like fatal: Commit 87e294e058f9edbf9d9cebfb0da6ede34b275e46 is a merge but no -m option was given.
, add -m 1
as follows instead:
$ git cherry-pick -m1 -x 87e294e058f9edbf9d9cebfb0da6ede34b275e46
$ git push origin patchback/backports/stable-2/87e294e058f9edbf9d9cebfb0da6ede34b275e46/pr-163
🤖 @patchback I'm built with octomachinery and my source is open — https://github.com/sanitizers/patchback-github-app.
@gotmax23 thanks for reviewing this!
Backport to stable-2: #164.
I'm not sure whether there is an official deprecation, but the conversion code has been removed from
master
(https://github.com/aio-libs/aiohttp/pull/6328) and there's now (since 3.10.0) typing that makes mypy no longer accept floats. The code in 3.10.0 still accepts them though, so this isn't a runtime issue yet.Also aiohttp 3.3.0+ is required for the timeout parameter that has been used by the GET retry manager since the beginning, so I updated the dependency version range.
Also pyre doesn't think
ClientSession.get
exists anymore with 3.10.0 :roll_eyes: