We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0d2e1c commit 43e9f12Copy full SHA for 43e9f12
3 files changed
.github/workflows/python-package.yml
@@ -26,10 +26,10 @@ jobs:
26
27
# 2. Python Package Build
28
# -------------------------------------------------------------------------------------------
29
- - name: Set up Python 3.11
+ - name: Set up Python 3.12
30
uses: actions/setup-python@v5
31
with:
32
- python-version: 3.11
+ python-version: 3.12
33
34
- name: Build the Python package
35
env:
.github/workflows/python-release.yml
@@ -25,10 +25,10 @@ jobs:
25
setup.py
@@ -67,12 +67,12 @@ def get_version(rel_path):
67
],
68
extras_require={
69
'dev': [
70
- 'build', # MIT License
71
- 'flake8', # MIT License
72
- 'pytest', # MIT License
73
- 'pytest-mock', # MIT License
+ 'build', # MIT License
+ 'flake8', # MIT License
+ 'pytest', # MIT License
+ 'pytest-mock', # MIT License
74
'requests-mock', # Apache Software License
75
- 'setuptools', # MIT License
+ 'setuptools', # MIT License
76
]
77
},
78
classifiers=[
@@ -81,9 +81,7 @@ def get_version(rel_path):
81
'Operating System :: Microsoft :: Windows',
82
'Operating System :: POSIX :: Linux',
83
'Programming Language :: Python',
84
- 'Programming Language :: Python :: 3.9',
85
- 'Programming Language :: Python :: 3.10',
86
- 'Programming Language :: Python :: 3.11',
+ 'Programming Language :: Python :: 3.12',
87
'Topic :: Communications',
88
'Topic :: Internet',
89
'Topic :: Software Development :: Libraries :: Python Modules'
0 commit comments