From 8d2407832a4807d48bc564f740cb5e36e8a9b063 Mon Sep 17 00:00:00 2001 From: Matthew Maxwell Date: Tue, 18 Jun 2024 14:42:19 -0700 Subject: [PATCH] removed python 3.7 from workflow, readme, and setup --- .github/workflows/python-demos.yml | 2 +- .github/workflows/python.yml | 2 +- demo/python/README.md | 2 +- demo/python/setup.py | 2 +- sdk/python/README.md | 2 +- sdk/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 afd3628c3..e0b7131e3 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'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] include: - os: ubuntu-latest platform: linux diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 828ef7da7..d4b80d282 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -34,7 +34,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v3 diff --git a/demo/python/README.md b/demo/python/README.md index ffca8fd58..85c6e3696 100644 --- a/demo/python/README.md +++ b/demo/python/README.md @@ -19,7 +19,7 @@ similar to Alexa and Google. But it entirely runs 100% on-device. Picovoice is ## Compatibility -* Python 3.7+ +* Python 3.8+ * Runs on Linux (x86_64), macOS (x86_64, 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 ed73ea05b..c636fac1e 100644 --- a/demo/python/setup.py +++ b/demo/python/setup.py @@ -63,6 +63,6 @@ 'picovoice_demo_mic=picovoicedemo.picovoice_demo_mic:main', ], ), - python_requires='>=3.7', + python_requires='>=3.8', keywords="wake word, voice control, speech recognition, voice recognition, natural language understanding", ) diff --git a/sdk/python/README.md b/sdk/python/README.md index 92c9797d5..23545a833 100644 --- a/sdk/python/README.md +++ b/sdk/python/README.md @@ -14,7 +14,7 @@ similar to Alexa and Google. But it entirely runs 100% on-device. Picovoice is ## Compatibility -* Python 3.7+ +* Python 3.8+ * Runs on Linux (x86_64), macOS (x86_64, arm64), Windows (x86_64), Raspberry Pi (all variants), NVIDIA Jetson (Nano), and BeagleBone. ## Installation diff --git a/sdk/python/setup.py b/sdk/python/setup.py index 8792b9a57..f92ebb948 100644 --- a/sdk/python/setup.py +++ b/sdk/python/setup.py @@ -51,6 +51,6 @@ "Programming Language :: Python :: 3", "Topic :: Multimedia :: Sound/Audio :: Speech" ], - python_requires='>=3.7', + python_requires='>=3.8', keywords="wake word, voice control, speech recognition, voice recognition, natural language understanding", )