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-subtitle/README.md b/demo/python-subtitle/README.md index 1fe378fa..caa000ad 100644 --- a/demo/python-subtitle/README.md +++ b/demo/python-subtitle/README.md @@ -1,7 +1,7 @@ # Leopard Subtitle Demo ## Compatibility -- Python 3.5+ +- Python 3.8+ - Runs on Linux (x86_64), macOS (x86_64, arm64), Windows (x86_64), Raspberry Pi (3, 4, 5), and NVIDIA Jetson Nano. ## AccessKey diff --git a/demo/python-youtube/README.md b/demo/python-youtube/README.md index 4b53fb29..696158e6 100644 --- a/demo/python-youtube/README.md +++ b/demo/python-youtube/README.md @@ -1,7 +1,7 @@ # Leopard YouTube Demo ## Compatibility -- Python 3.5+ +- Python 3.8+ - Runs on Linux (x86_64), macOS (x86_64, arm64), Windows (x86_64), Raspberry Pi (3, 4, 5), and NVIDIA Jetson Nano. ## AccessKey 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", )