diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 900b6ae..6b0c2c8 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -40,7 +40,7 @@ jobs: - name: Install Protoc uses: arduino/setup-protoc@v3 with: - version: '29.x' + version: '29.3' repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Generate proto files diff --git a/setup.py b/setup.py index cef54a3..6cb7e5a 100644 --- a/setup.py +++ b/setup.py @@ -43,6 +43,6 @@ def get_absolute_path(*args): keywords=about["__keywords__"], packages=find_packages(exclude=["contrib", "docs", "tests", "examples"]), install_requires=[ - "protobuf~=5.0" + "protobuf~=5.29.3" ] )