From e34b84351d058436fb4202efe5edcf3bbfa42d68 Mon Sep 17 00:00:00 2001 From: Mikhail Epikhin Date: Thu, 8 Aug 2024 14:51:25 +0200 Subject: [PATCH] * update buf and pin all dependencies --- Makefile | 2 +- requirements-dev.txt | 2 +- setup.py | 17 +++++++++-------- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 8a99707..1b6d163 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ REPO_ROOT:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST)))) -BUF_VERSION="1.30.1" +BUF_VERSION="1.36.0" BIN="venv/bin" venv: ## install deps (library & development) diff --git a/requirements-dev.txt b/requirements-dev.txt index 2303634..9c5b498 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -7,5 +7,5 @@ pytest python-semantic-release==7.34.6 tox tox-gh-actions -grpcio-tools +grpcio-tools==1.62.1 wheel \ No newline at end of file diff --git a/setup.py b/setup.py index 6632fc2..8d5cdee 100644 --- a/setup.py +++ b/setup.py @@ -13,14 +13,14 @@ author_email="support@double.cloud", license="Apache License 2.0", install_requires=[ - "cryptography>=39.0.2", - "grpcio>=1.51.3", - "protobuf>=4.22.1", - "grpcio-tools>=1.51.3", - "googleapis-common-protos>=1.58.0", - "pyjwt>=2.6.0", - "requests>=2.28.2", - "six>=1.16.0", + "cryptography==42.0.5", + "grpcio==1.62.1", + "protobuf==4.22.1", + "grpcio-tools==1.62.1", + "googleapis-common-protos==1.63.0", + "pyjwt==2.8.0", + "requests==2.31.0", + "six==1.16.0", ], classifiers=[ "Programming Language :: Python", @@ -29,6 +29,7 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ], tests_require=["pytest"], setup_requires=["wheel"],