Skip to content

Commit

Permalink
feat: support Python 3.12 (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyujin-cho committed Apr 26, 2024
1 parent 5b512ef commit 4b93d60
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
8 changes: 5 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 4b93d60

Please sign in to comment.