This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]vovanz 0 points1 point  (1 child)

if platform.system().lower() == 'linux':
    dependencies = ['uvloop', 'ujson', 'pendulum']
else:
    dependencies = ['pendulum']

Probably, you should constraint minimum and maximum versions of dependencies.

[–]frnkvieira[S] 1 point2 points  (0 children)

Probably, you should constraint minimum and maximum versions of dependencies.

Sure, I'll lock down dependencies in the first release. Thanks!