From 46c81de82ee1bafd1515963371e241b88c0b7dcc Mon Sep 17 00:00:00 2001 From: Raphael-AugustoG Date: Thu, 13 Jun 2024 15:52:34 -0300 Subject: [PATCH] chore(update-version): Update versions in all files. --- requirements.txt | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index dabfbae..048818e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -protobuf>= 3.19.3, <= 3.20.1 \ No newline at end of file +protobuf == 3.20.3 \ No newline at end of file diff --git a/setup.py b/setup.py index 2238244..4d14c0d 100644 --- a/setup.py +++ b/setup.py @@ -3,12 +3,12 @@ setup( name="pySSLVision", packages=find_packages() + find_packages(where="./protocols"), - version="1.0.1", + version="2.0.0", description="Creates a network socket to communicate with the SSL Vision", long_description_content_type='text/markdown', long_description=open('README.md').read(), author="Project-Neon", author_email="projectneon@gmail.com", license="GNU", - #install_requires=['protobuf==3.6.1'], + install_requires=['protobuf==3.20.3'], )