async-worker / aiologger

Asynchronous logging for Python and asyncio
https://async-worker.github.io/aiologger/
MIT License
129 stars 13 forks source link

aiofiles locked dependency #11

Open s0undt3ch opened 2 years ago

s0undt3ch commented 2 years ago

Why is aiologger locking the aiofiles dependency? This a library, shouldn't it be using a constrain instead? aiofiles>=0.4.0

Because now, any other project is forced to use aiofiles==0.4.0 or it can result in a broken dependency tree if a newer version of aiofiles is required by any other dependency...

diogommartins commented 2 years ago

Why is aiologger locking the aiofiles dependency? This a library, shouldn't it be using a constrain instead? aiofiles>=0.4.0

Because now, any other project is forced to use aiofiles==0.4.0 or it can result in a broken dependency tree if a newer version of aiofiles is required by any other dependency...

I'm ok with loosing up this dependency. Would you like to submit a PR, @s0undt3ch ?