Our Django project has a dependency conflict due to typing-extensions version constraints:
klarna-orders 1.1.1 requires typing-extensions==4.3.0
Other dependencies (dj-database-url, slippers, etc.) require newer versions.
This pinned version in klarna-orders blocks us from meeting version requirements for other packages. Could the version constraint on typing-extensions in klarna-python be relaxed to support newer versions?
Thank you!
Code example below:
The conflict is caused by:
dj-database-url 2.3.0 depends on typing-extensions>=3.10.0.0
django-countries 7.6.1 depends on typing-extensions
klarna-orders 1.1.1 depends on typing-extensions==4.3.0
slippers 0.6.2 depends on typing-extensions>=4.4.0
Our Django project has a dependency conflict due to typing-extensions version constraints:
This pinned version in klarna-orders blocks us from meeting version requirements for other packages. Could the version constraint on typing-extensions in klarna-python be relaxed to support newer versions?
Thank you!
Code example below: