From 3f6f355e18686ddf3499561d5688b5b3fb65fccf Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Fri, 7 Mar 2025 20:25:59 +0000 Subject: [PATCH] fix: resolve issue where pre-release versions of dependencies are installed --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 8442e464..631ff777 100644 --- a/setup.py +++ b/setup.py @@ -24,13 +24,13 @@ REQUIREMENTS = [ - 'google-crc32c >= 1.0, < 2.0dev', + 'google-crc32c >= 1.0.0, < 2.0.0', ] EXTRAS_REQUIRE = { 'requests': [ - 'requests >= 2.18.0, < 3.0.0dev', + 'requests >= 2.18.0, < 3.0.0', ], - 'aiohttp': ['aiohttp >= 3.6.2, < 4.0.0dev', 'google-auth >= 1.22.0, < 2.0dev'] + 'aiohttp': ['aiohttp >= 3.6.2, < 4.0.0', 'google-auth >= 1.22.0, < 2.0.0'] } setuptools.setup(