Skip to content

Commit

Permalink
Drop support for Python 3.7
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Wozniski <[email protected]>
  • Loading branch information
godlygeek committed Jan 15, 2025
1 parent acc7593 commit 6d8cf8f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ jobs:
rm bloomberg-comdb2.tar.gz
'
- uses: actions/checkout@v4
- name: 'Set up Python 3.7'
- name: 'Set up Python 3.8'
uses: actions/setup-python@v5 # note that this step overwrites the PKG_CONFIG_PATH variable
with:
python-version: '3.7' # the lowest version that we support in CI
python-version: '3.8' # the lowest version that we support in CI
- name: Build sdist
run: '
sudo apt-get install -qy pkg-config &&
Expand All @@ -114,7 +114,6 @@ jobs:
- '3.10'
- '3.9'
- '3.8'
- '3.7'
steps:
- name: Download comdb2 repo with build artifacts
uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def make_static_extension(name, **kwargs):
packages=["comdb2"],
install_requires=["pytz"],
extras_require={"tests": ["python-dateutil>=2.6.0", "pytest"]},
python_requires=">=3.7",
python_requires=">=3.8",
ext_modules=[ccdb2],
package_data={"comdb2": ["py.typed", "*.pyi"]},
)

0 comments on commit 6d8cf8f

Please sign in to comment.