From c1fb6e7598e622c4fae289816832de389818daeb Mon Sep 17 00:00:00 2001 From: Paul O'Leary McCann Date: Wed, 8 May 2024 14:11:39 +0900 Subject: [PATCH 1/3] Expand protobuf version range --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 467cb3a..1ac344a 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ 'grpcio-tools>=1.53.0,<1.64.0', 'python-dotenv', 'param', - 'protobuf==4.21.12' + 'protobuf>=4.21.12,<6.0.0' ], extras_require={ 'dev': [ From 26dc611e187ca37fa796634f686f909ae9ac2468 Mon Sep 17 00:00:00 2001 From: Paul O'Leary McCann Date: Wed, 8 May 2024 14:15:10 +0900 Subject: [PATCH 2/3] Add 3.12 to unit testing --- .github/workflows/unit_testing.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit_testing.yaml b/.github/workflows/unit_testing.yaml index bc9ea02..8bd2565 100644 --- a/.github/workflows/unit_testing.yaml +++ b/.github/workflows/unit_testing.yaml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 From cb79ca6d98534362e8f2bd5dc5933c8fe5135ea3 Mon Sep 17 00:00:00 2001 From: Paul O'Leary McCann Date: Wed, 8 May 2024 14:16:12 +0900 Subject: [PATCH 3/3] Bump lib version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1ac344a..3fc65cc 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name='stability-sdk', - version='0.8.5', + version='0.8.6', author='Stability AI', author_email='support@stability.ai', maintainer='Stability AI',