-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Bump jsonschema to 4.19.* #10583
Bump jsonschema to 4.19.* #10583
Conversation
This comment has been minimized.
This comment has been minimized.
Depends on typeshed-internal/stub_uploader#100. |
I think this is the first package where a dependency doesn't work with all Python versions we support. I guess we need a new METADATA.toml field |
New versions of numpy don't support Python 3.7, which is why we run So I'm curious to see exactly what the issue is here... |
I assume (not investigated yet) that referencing doesn't declare a dependency on python >= 3.8. |
I'm looking at it |
Maybe we should print this to the terminal when the test fails even if the Lines 299 to 302 in 54193d5
|
Okay, so it's installing |
And, yup, def resource_at(
self,
uri: str,
) -> tuple[IdentifiedResource, PMap[str, AnchorType], Registry]:
at_uri = self._contents.get(uri)
if at_uri is None or uri in self._uncrawled:
registry = self._crawl()
return *registry._contents[uri], registry
return *at_uri, self Those |
This comment has been minimized.
This comment has been minimized.
We should be able to merge #10559 as soon as the PyPI admins let mypy publish a 1.5 patch release fixing the stubtest regression. (Or we could just allowlist the stubtest regression for now, and unallowlist it as soon as mypy 1.5.1 comes out.) Once #10559 is merged, we stop running We're only in this situation in the first place because the |
We unfortunately can't pin to any version of |
Thanks for the analysis! Let's wait for mypy 1.5 then and see if that helps. |
This comment has been minimized.
This comment has been minimized.
According to mypy_primer, this change has no effect on the checked open source code. 🤖🎉 |
This reverts commit 6ca7505.
Closes: #10417