From 6ebe6b5d55a3fc710abc13a6312ea2d31a519947 Mon Sep 17 00:00:00 2001 From: Matthew Maxwell Date: Tue, 18 Jun 2024 14:30:30 -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 47172f9..46658fe 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', '3.12'] + 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 6b49860..b7533a7 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', '3.11', '3.12'] + 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 6211559..6b6201d 100644 --- a/binding/python/README.md +++ b/binding/python/README.md @@ -13,7 +13,7 @@ Falcon is an on-device speaker diarization engine. Falcon 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 45a9772..993391c 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 Diarization, Speaker Identification, Voice Identification", ) diff --git a/demo/python/README.md b/demo/python/README.md index d7ed976..d899d49 100644 --- a/demo/python/README.md +++ b/demo/python/README.md @@ -13,7 +13,7 @@ Falcon is an on-device speaker diarization engine. Falcon 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 b74e090..4646acf 100644 --- a/demo/python/setup.py +++ b/demo/python/setup.py @@ -52,6 +52,6 @@ 'falcon_demo_mic=pvfalcondemo.falcon_demo_mic:main', ], ), - python_requires='>=3.7', + python_requires='>=3.8', keywords="Speaker Diarization, Speaker Identification, Voice Identification", )