Skip to content

Commit 6570dae

Browse files
committed
Set the minimum Python version to 3.8
1 parent 41a2bc5 commit 6570dae

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/BuildTests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
# The matrix will produce one job for each configuration:
2525
matrix:
2626
platform: [windows-latest, macos-13, ubuntu-latest]
27-
python-version: ["3.7", "3.11"]
27+
python-version: ["3.8", "3.11"]
2828

2929
runs-on: ${{ matrix.platform }}
3030

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# pyRCSwitch
22
Python C++ extension module to wrap the **RCSwitch Common Library**.
33

4-
Works on any **libc++** compatible system with Python v3.7 or higher, such as macOS, FreeBSD, Linux, and even Windows.
4+
Works on any **libc++** compatible system with Python v3.8 or higher, such as macOS, FreeBSD, Linux, and even Windows.
55

66
[![License: LGPL v3](https://img.shields.io/badge/License-LGPL%20v3-blue.svg)](https://www.gnu.org/licenses/lgpl-3.0)
77
[![Build tests](https://github.com/latchdevel/pyRCSwitch/actions/workflows/BuildTests.yml/badge.svg)](https://github.com/latchdevel/pyRCSwitch/actions/workflows/BuildTests.yml)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,6 @@ def build_extensions(self):
9595
"Operating System :: OS Independent"
9696
],
9797
platforms=["any"],
98-
python_requires=">=3.7",
98+
python_requires=">=3.8",
9999
test_suite = 'test_pyRCSwitch'
100100
)

0 commit comments

Comments
 (0)