Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

upgrade protobuf 3.13.0 -> 3.19.0 #14

Merged
merged 1 commit into from
Sep 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
certifi==2024.2.2
cryptography==39.0.2
protobuf==3.13.0
protobuf==3.19.0
requests==2.31.0
urllib3==1.25.11
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.0.3
current_version = 3.0.4
commit = True
tag = True

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

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

__VERSION__ = '3.0.3'
__VERSION__ = '3.0.4'

class ProtobufBuilder(_build):

Expand Down Expand Up @@ -48,6 +48,6 @@ def run(self):
include_package_data=True,
cmdclass={'build_py': ProtobufBuilder},
install_requires=['cryptography<41',
'protobuf==3.13.0',
'protobuf==3.19.0',
'requests==2.31.0',
'urllib3 < 1.26.0'])