Skip to content

Commit

Permalink
fix: invalid dev version identifiers in setup.py (#1322)
Browse files Browse the repository at this point in the history
Not ~PEP 440~ distlib compliant.

Fixes #1321
  • Loading branch information
con-f-use committed Jun 8, 2023
1 parent 240470a commit a9b8f12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
)

extras = {
"aiohttp": ["aiohttp >= 3.6.2, < 4.0.0dev", "requests >= 2.20.0, < 3.0.0dev"],
"aiohttp": ["aiohttp >= 3.6.2, < 4.0.0.dev0", "requests >= 2.20.0, < 3.0.0.dev0"],
"pyopenssl": ["pyopenssl>=20.0.0", "cryptography>=38.0.3"],
"requests": "requests >= 2.20.0, < 3.0.0dev",
"requests": "requests >= 2.20.0, < 3.0.0.dev0",
"reauth": "pyu2f>=0.1.5",
# Enterprise cert only works for OpenSSL 1.1.1. Newer versions of these
# dependencies are built with OpenSSL 3.0 so we need to fix the version.
Expand Down
Binary file modified system_tests/secrets.tar.enc
Binary file not shown.

0 comments on commit a9b8f12

Please sign in to comment.