I encountered a dependency conflict issue related to the aiocryptopay package version 0.2.8 and its requirement for pydantic<2.0.0 and >=1.10.7. This specific requirement is incompatible with several other libraries that depend on different versions of pydantic, making it difficult to use aiocryptopay in conjunction with other packages.
As an example, the library aiogram (versions 3.0.0rc2, 3.0.0b9) depends on pydantic<3 and >=2.1.1, which conflicts with the constraints set by aiocryptopay.
The error message I received:
ERROR: Cannot install -r .\requirements.txt (line 1) and -r .\requirements.txt (line 25) because these package versions have conflicting dependencies.
The conflict is caused by:
aiocryptopay 0.2.8 depends on pydantic<2.0.0 and >=1.10.7
aiogram 3.0.0rc2 depends on pydantic<3 and >=2.1.1
aiocryptopay 0.2.8 depends on pydantic<2.0.0 and >=1.10.7
aiocryptopay 0.2.8 depends on pydantic<2.0.0 and >=1.10.7
aiogram 3.0.0b9 depends on pydantic~=2.1.1
Environment details:
Python version: Python 3.10
OS: Windows
The issue prevents me from using aiocryptopay in projects that also depend on other libraries with conflicting pydantic requirements. I kindly request an update to support a broader range of pydantic versions.
I encountered a dependency conflict issue related to the
aiocryptopay
package version 0.2.8 and its requirement forpydantic<2.0.0 and >=1.10.7
. This specific requirement is incompatible with several other libraries that depend on different versions ofpydantic
, making it difficult to useaiocryptopay
in conjunction with other packages.As an example, the library
aiogram
(versions3.0.0rc2
,3.0.0b9
) depends onpydantic<3 and >=2.1.1
, which conflicts with the constraints set byaiocryptopay
.The error message I received:
Environment details:
The issue prevents me from using
aiocryptopay
in projects that also depend on other libraries with conflictingpydantic
requirements. I kindly request an update to support a broader range ofpydantic
versions.Thank you