From 311b05a235fa607a7a5ca7b3c2e4ad90ef195dff Mon Sep 17 00:00:00 2001 From: Matthew Maxwell Date: Tue, 18 Jun 2024 14:35:34 -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 2d243fd0..76be104e 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'] + 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 35de37e2..43342858 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -38,7 +38,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 be715049..09502618 100644 --- a/binding/python/README.md +++ b/binding/python/README.md @@ -17,7 +17,7 @@ Leopard is an on-device speech-to-text engine. Leopard 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/binding/python/setup.py b/binding/python/setup.py index d4a07446..b1f69359 100644 --- a/binding/python/setup.py +++ b/binding/python/setup.py @@ -65,6 +65,6 @@ "Programming Language :: Python :: 3", "Topic :: Multimedia :: Sound/Audio :: Speech" ], - python_requires='>=3.7', + python_requires='>=3.8', keywords="Speech-to-Text, Speech Recognition, Voice Recognition, ASR, Automatic Speech Recognition", ) diff --git a/demo/python/README.md b/demo/python/README.md index 55fe0986..4fe3bc88 100644 --- a/demo/python/README.md +++ b/demo/python/README.md @@ -17,7 +17,7 @@ Leopard is an on-device speech-to-text engine. Leopard 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 18f99817..28ec804e 100644 --- a/demo/python/setup.py +++ b/demo/python/setup.py @@ -52,6 +52,6 @@ 'leopard_demo_mic=pvleoparddemo.leopard_demo_mic:main', ], ), - python_requires='>=3.7', + python_requires='>=3.8', keywords="Speech-to-Text, ASR, Speech Recognition, Voice Recognition, Automatic Speech Recognition", )