Skip to content

Commit 23dafcf

Browse files
partheacojenco
andauthored
fix: resolve issue where pre-release versions of dependencies are installed (#481)
Co-authored-by: cojenco <cathyo@google.com>
1 parent 8de1c3b commit 23dafcf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424

2525

2626
REQUIREMENTS = [
27-
'google-crc32c >= 1.0, < 2.0dev',
27+
'google-crc32c >= 1.0.0, < 2.0.0',
2828
]
2929
EXTRAS_REQUIRE = {
3030
'requests': [
31-
'requests >= 2.18.0, < 3.0.0dev',
31+
'requests >= 2.18.0, < 3.0.0',
3232
],
33-
'aiohttp': ['aiohttp >= 3.6.2, < 4.0.0dev', 'google-auth >= 1.22.0, < 2.0dev']
33+
'aiohttp': ['aiohttp >= 3.6.2, < 4.0.0', 'google-auth >= 1.22.0, < 2.0.0']
3434
}
3535

3636
setuptools.setup(

0 commit comments

Comments
 (0)