While upgrading openapi-spec-validator from 0.7.2 to 0.8.4, I noticed that jsonschema is downgraded from 4.26.2 to 4.24.1. This downgrade is introduced by this commit.
I noticed that the package is constrained to 4.24.0-4.25.0, as confirmed in pyproject.toml.
This creates a regression for us because updating openapi-spec-validator forces a downgrade of jsonschema.
Steps to reproduce
Install openapi-spec-validator==0.7.2 → jsonschema resolves to 4.26.2
Upgrade to openapi-spec-validator==0.8.4 → jsonschema resolves to 4.24.1
Expected
Upgrading openapi-spec-validator should not force a downgrade of jsonschema (or should allow jsonschema>=4.26.2).