diff --git a/.github/workflows/python-demos.yml b/.github/workflows/python-demos.yml index 80000c97..5f9fe6e2 100644 --- a/.github/workflows/python-demos.yml +++ b/.github/workflows/python-demos.yml @@ -26,7 +26,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 76dd69b1..c4c34af4 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -37,8 +37,8 @@ jobs: strategy: matrix: - os: [ubuntu-latest, macos-latest] - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] + os: [ubuntu-latest] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v3 @@ -58,7 +58,7 @@ jobs: strategy: matrix: - machine: [rpi2, rpi3-32, rpi3-64, rpi4-32, rpi4-64, rpi5-64, jetson, beaglebone, pv-windows] + machine: [rpi2, rpi3-32, rpi3-64, rpi4-32, rpi4-64, rpi5-64, jetson, beaglebone, pv-windows, pv-ios] steps: - uses: actions/checkout@v3 diff --git a/binding/python/README.md b/binding/python/README.md index 08014951..8eb528b1 100644 --- a/binding/python/README.md +++ b/binding/python/README.md @@ -6,7 +6,7 @@ PvRecorder is an easy-to-use, cross-platform audio recorder designed for real-ti ## Compatibility -- Python 3.5+ +- Python 3.8+ - Runs on Linux (x86_64), macOS (x86_64 and arm64), Windows (x86_64), Raspberry Pi (all variants), NVIDIA Jetson (Nano), and BeagleBone. ## Installation diff --git a/binding/python/setup.py b/binding/python/setup.py index cc925a03..c2a8594c 100644 --- a/binding/python/setup.py +++ b/binding/python/setup.py @@ -76,6 +76,6 @@ "Programming Language :: Python :: 3", "Topic :: Multimedia :: Sound/Audio :: Speech" ], - python_requires='>=3.5', + python_requires='>=3.8', keywords="Audio Recorder", ) diff --git a/demo/python/README.md b/demo/python/README.md index ac088537..8674a214 100644 --- a/demo/python/README.md +++ b/demo/python/README.md @@ -8,7 +8,7 @@ PvRecorder is an easy-to-use, cross-platform audio recorder designed for real-ti ## Compatibility -- Python 3.5+ +- Python 3.8+ - Runs on Linux (x86_64), macOS (x86_64 and arm64), Windows (x86_64), Raspberry Pi (all variants), NVIDIA Jetson (Nano), and BeagleBone. ## Installation diff --git a/demo/python/setup.py b/demo/python/setup.py index ee7f3cd2..7ed3aa11 100644 --- a/demo/python/setup.py +++ b/demo/python/setup.py @@ -46,6 +46,6 @@ 'pv_recorder_demo=pvrecorderdemo.pv_recorder_demo:main', ], ), - python_requires='>=3.5', + python_requires='>=3.8', keywords="Audio Recorder", )