Skip to content

Commit a9b8f12

Browse files
authored
fix: invalid dev version identifiers in setup.py (#1322)
Not ~PEP 440~ distlib compliant. Fixes #1321
1 parent 240470a commit a9b8f12

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
)
3232

3333
extras = {
34-
"aiohttp": ["aiohttp >= 3.6.2, < 4.0.0dev", "requests >= 2.20.0, < 3.0.0dev"],
34+
"aiohttp": ["aiohttp >= 3.6.2, < 4.0.0.dev0", "requests >= 2.20.0, < 3.0.0.dev0"],
3535
"pyopenssl": ["pyopenssl>=20.0.0", "cryptography>=38.0.3"],
36-
"requests": "requests >= 2.20.0, < 3.0.0dev",
36+
"requests": "requests >= 2.20.0, < 3.0.0.dev0",
3737
"reauth": "pyu2f>=0.1.5",
3838
# Enterprise cert only works for OpenSSL 1.1.1. Newer versions of these
3939
# dependencies are built with OpenSSL 3.0 so we need to fix the version.

system_tests/secrets.tar.enc

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)