diff --git a/.github/workflows/python-demos.yml b/.github/workflows/python-demos.yml index 34198f1..3a74b53 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 5665f01..b5f5ee4 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -40,7 +40,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 fe7f1cd..bf09544 100644 --- a/binding/python/README.md +++ b/binding/python/README.md @@ -16,7 +16,7 @@ Eagle is an on-device speaker recognition engine. Eagle 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 5fb6391..57cbc72 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="Speaker Recognition, Speaker Identification, Voice Recognition, Voice Identification", ) diff --git a/demo/python/README.md b/demo/python/README.md index f986e77..70b6302 100644 --- a/demo/python/README.md +++ b/demo/python/README.md @@ -15,7 +15,7 @@ Eagle is an on-device speaker recognition engine. Eagle 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 0d22c1f..21a9975 100644 --- a/demo/python/setup.py +++ b/demo/python/setup.py @@ -48,6 +48,6 @@ "eagle_demo_mic=pveagledemo.eagle_demo_mic:main", ], ), - python_requires=">=3.7", + python_requires=">=3.8", keywords="Speaker Recognition, Speaker Identification, Voice Recognition, Voice Identification", )