Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:

# 2. Python Package Build
# -------------------------------------------------------------------------------------------
- name: Set up Python 3.11
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.12

- name: Build the Python package
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:

# 2. Python Package Build
# -------------------------------------------------------------------------------------------
- name: Set up Python 3.11
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.12

- name: Build the Python package
env:
Expand Down
14 changes: 6 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ def get_version(rel_path):
],
extras_require={
'dev': [
'build', # MIT License
'flake8', # MIT License
'pytest', # MIT License
'pytest-mock', # MIT License
'build', # MIT License
'flake8', # MIT License
'pytest', # MIT License
'pytest-mock', # MIT License
'requests-mock', # Apache Software License
'setuptools', # MIT License
'setuptools', # MIT License
]
},
classifiers=[
Expand All @@ -81,9 +81,7 @@ def get_version(rel_path):
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Communications',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules'
Expand Down