I would like to install dexguru-sdk to a project that is already using pydantic = ^1.9.1, which conflicts with the hard requirement of pydantic=1.8.2 in your requirements.txt.
Would you mind updating your requirements.txt to something like the following?
aiohttp>=3.7.5,<4
ujson>=4.0.2,<5
pydantic>=1.8.2,<2
Or alternatively keeping fixed versions in requirements.txt and setting a looser range in setup.py?
I would like to install
dexguru-sdkto a project that is already usingpydantic = ^1.9.1, which conflicts with the hard requirement ofpydantic=1.8.2in yourrequirements.txt.Would you mind updating your
requirements.txtto something like the following?Or alternatively keeping fixed versions in
requirements.txtand setting a looser range insetup.py?