From 587de68d49e4b622aa6e3eb5a9ba459103df5e51 Mon Sep 17 00:00:00 2001 From: vibaswan Date: Sat, 9 May 2026 10:53:16 +0000 Subject: [PATCH 1/3] update protobuf and grpcio versions --- .github/workflows/build.yml | 8 ++++---- openapiart/requirements.txt | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index acacb143..1a2ffa50 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: strategy: max-parallel: 1 matrix: - python-version: [ 3.9 ] + python-version: [3.9] steps: - name: Checkout source uses: actions/checkout@v2 @@ -138,7 +138,7 @@ jobs: strategy: max-parallel: 6 matrix: - python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] fail-fast: false steps: - name: Checkout source @@ -180,7 +180,7 @@ jobs: strategy: max-parallel: 4 matrix: - go-version: [ "1.22", "1.23", "1.24", "1.25" ] + go-version: ["1.22", "1.23", "1.24", "1.25"] fail-fast: false steps: - name: Checkout source @@ -262,7 +262,7 @@ jobs: fail: true publish_python_package: - needs: [ python_tests, go_tests, proto_yml_generation_test ] + needs: [python_tests, go_tests, proto_yml_generation_test] runs-on: ubuntu-latest steps: - name: Checkout source diff --git a/openapiart/requirements.txt b/openapiart/requirements.txt index 6d669985..0dd27232 100644 --- a/openapiart/requirements.txt +++ b/openapiart/requirements.txt @@ -10,7 +10,7 @@ requests typing_extensions click==8.1.7 black==22.3.0 -grpcio-tools~=1.70.0 +grpcio-tools~=1.80.0 pipreqs==0.4.11 -protobuf~=5.29.5 -grpcio~=1.70.0 +protobuf~=6.36.6 +grpcio~=1.80.0 From d36a317256a7e30bbb400a369d623d99dbd79cbf Mon Sep 17 00:00:00 2001 From: vibaswan Date: Sat, 9 May 2026 10:55:57 +0000 Subject: [PATCH 2/3] correct version --- openapiart/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openapiart/requirements.txt b/openapiart/requirements.txt index 0dd27232..1d6a579b 100644 --- a/openapiart/requirements.txt +++ b/openapiart/requirements.txt @@ -12,5 +12,5 @@ click==8.1.7 black==22.3.0 grpcio-tools~=1.80.0 pipreqs==0.4.11 -protobuf~=6.36.6 +protobuf~=6.33.6 grpcio~=1.80.0 From 35aa7c7a55c2ee4e42bd51d859a1e637b82b84da Mon Sep 17 00:00:00 2001 From: vibaswan Date: Wed, 13 May 2026 05:58:12 +0000 Subject: [PATCH 3/3] update pyproject.toml --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 15f92aed..11d74bb7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ version = "0.3.41" dynamic = ["dependencies", "optional-dependencies"] description = "The OpenAPI Artifact Generator Python Package" readme = "readme.md" -requires-python = ">=3.8,<4" +requires-python = ">=3.9,<4" license = "MIT" license-files = ["LICENSE"] authors = [ @@ -23,11 +23,11 @@ classifiers = [ "Intended Audience :: Developers", "Topic :: Software Development :: Testing :: Traffic Generation", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ] [tool.setuptools.dynamic]