Skip to content

Commit 43e9f12

Browse files
committed
[patch] Update support python version to 3.12
1 parent e0d2e1c commit 43e9f12

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
2727
# 2. Python Package Build
2828
# -------------------------------------------------------------------------------------------
29-
- name: Set up Python 3.11
29+
- name: Set up Python 3.12
3030
uses: actions/setup-python@v5
3131
with:
32-
python-version: 3.11
32+
python-version: 3.12
3333

3434
- name: Build the Python package
3535
env:

.github/workflows/python-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
2626
# 2. Python Package Build
2727
# -------------------------------------------------------------------------------------------
28-
- name: Set up Python 3.11
28+
- name: Set up Python 3.12
2929
uses: actions/setup-python@v5
3030
with:
31-
python-version: 3.11
31+
python-version: 3.12
3232

3333
- name: Build the Python package
3434
env:

setup.py

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@ def get_version(rel_path):
6767
],
6868
extras_require={
6969
'dev': [
70-
'build', # MIT License
71-
'flake8', # MIT License
72-
'pytest', # MIT License
73-
'pytest-mock', # MIT License
70+
'build', # MIT License
71+
'flake8', # MIT License
72+
'pytest', # MIT License
73+
'pytest-mock', # MIT License
7474
'requests-mock', # Apache Software License
75-
'setuptools', # MIT License
75+
'setuptools', # MIT License
7676
]
7777
},
7878
classifiers=[
@@ -81,9 +81,7 @@ def get_version(rel_path):
8181
'Operating System :: Microsoft :: Windows',
8282
'Operating System :: POSIX :: Linux',
8383
'Programming Language :: Python',
84-
'Programming Language :: Python :: 3.9',
85-
'Programming Language :: Python :: 3.10',
86-
'Programming Language :: Python :: 3.11',
84+
'Programming Language :: Python :: 3.12',
8785
'Topic :: Communications',
8886
'Topic :: Internet',
8987
'Topic :: Software Development :: Libraries :: Python Modules'

0 commit comments

Comments
 (0)