Skip to content

Commit

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

Fixes #165
  • Loading branch information
con-f-use committed Jun 6, 2023
1 parent 83e4cd8 commit c38e03a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -23,10 +23,10 @@
version = "1.59.0"
release_status = "Development Status :: 5 - Production/Stable"
dependencies = [
"protobuf>=3.19.5,<5.0.0dev,!=3.20.0,!=3.20.1,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5",
"protobuf>=3.19.5,<5.0.0.dev0,!=3.20.0,!=3.20.1,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5",
]

extras_require = {"grpc": ["grpcio >= 1.44.0, <2.0.0dev"]}
extras_require = {"grpc": ["grpcio >= 1.44.0, <2.0.0.dev0"]}

package_root = os.path.abspath(os.path.dirname(__file__))

Expand Down

0 comments on commit c38e03a

Please sign in to comment.