From e8e1aad80ddbf87af68af6511d5784f582ec317b Mon Sep 17 00:00:00 2001 From: Matthew Maxwell Date: Tue, 18 Jun 2024 14:33:16 -0700 Subject: [PATCH] removed python 3.7 from workflow, readme, and setup --- .github/workflows/python-demos.yml | 2 +- .github/workflows/python.yml | 2 +- binding/python/README.md | 2 +- binding/python/setup.py | 2 +- demo/python/README.md | 2 +- demo/python/setup.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python-demos.yml b/.github/workflows/python-demos.yml index eaec9ac..4925471 100644 --- a/.github/workflows/python-demos.yml +++ b/.github/workflows/python-demos.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ['3.7', '3.8', '3.9', '3.10'] + 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 4820015..9d2bac2 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -42,7 +42,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v3 diff --git a/binding/python/README.md b/binding/python/README.md index 4252095..232933b 100644 --- a/binding/python/README.md +++ b/binding/python/README.md @@ -15,7 +15,7 @@ Koala is an on-device noise suppression engine. Koala is: ## Compatibility -- Python 3.7 or higher +- Python 3.8 or higher - Runs on Linux (x86_64), macOS (x86_64, arm64), Windows (x86_64), Raspberry Pi (3, 4, 5), and NVIDIA Jetson Nano. ## Installation diff --git a/binding/python/setup.py b/binding/python/setup.py index adb72a8..728dc14 100644 --- a/binding/python/setup.py +++ b/binding/python/setup.py @@ -59,6 +59,6 @@ "Programming Language :: Python :: 3", "Topic :: Multimedia :: Sound/Audio :: Speech" ], - python_requires='>=3.7', + python_requires='>=3.8', keywords="Noise Cancellation, Noise Suppression, Noise Removal, Speech Enhancement, Speech Denoising", ) diff --git a/demo/python/README.md b/demo/python/README.md index 51dab70..6f160d0 100644 --- a/demo/python/README.md +++ b/demo/python/README.md @@ -15,7 +15,7 @@ Koala is an on-device noise suppression engine. Koala is: ## Compatibility -- Python 3.7+ +- Python 3.8+ - Runs on Linux (x86_64), macOS (x86_64, arm64), Windows (x86_64), Raspberry Pi (3, 4, 5), and NVIDIA Jetson Nano. ## Installation diff --git a/demo/python/setup.py b/demo/python/setup.py index 78cf525..4dabb99 100644 --- a/demo/python/setup.py +++ b/demo/python/setup.py @@ -48,6 +48,6 @@ 'koala_demo_mic=pvkoalademo.koala_demo_mic:main', ], ), - python_requires='>=3.7', + python_requires='>=3.8', keywords="Noise Cancellation, Noise Suppression, Noise Removal, Speech Enhancement, Speech Denoising", )