From 4b93d60183bea8a0b6f5ddae98d63e7cfb89d160 Mon Sep 17 00:00:00 2001 From: Kyujin Cho Date: Sat, 27 Apr 2024 00:53:46 +0900 Subject: [PATCH] feat: support Python 3.12 (#26) --- .github/workflows/default.yml | 8 ++++---- setup.cfg | 8 +++++--- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index 7d2df18..49d7ed9 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -10,7 +10,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: "3.10" + python-version: "3.12" cache: "pip" cache-dependency-path: | setup.cfg @@ -35,7 +35,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: "3.10" + python-version: "3.12" cache: "pip" cache-dependency-path: | setup.cfg @@ -61,7 +61,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: "3.10" + python-version: "3.12" cache: "pip" cache-dependency-path: | setup.cfg @@ -114,7 +114,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: "3.10" + python-version: "3.12" cache: "pip" cache-dependency-path: | setup.cfg diff --git a/setup.cfg b/setup.cfg index 4b51150..633440a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,6 +15,8 @@ classifiers = Programming Language :: Python Programming Language :: Python :: 3 Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 Operating System :: POSIX Operating System :: MacOS :: MacOS X Topic :: Software Development @@ -32,9 +34,9 @@ setup_requires = setuptools>=51.1.1 wheel>=0.36.2 install_requires = - protobuf~=4.23.4 - grpcio==1.59.0 - grpcio-tools==1.59.0 + protobuf~=4.25.3 + grpcio==1.62.2 + grpcio-tools==1.62.2 async-timeout~=4.0.0 zip_safe = false include_package_data = true