Skip to content

Commit 72de037

Browse files
authored
removed python 3.7 from workflow, readme, and setup (#214)
1 parent e9a3ac6 commit 72de037

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/python-demos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
matrix:
2828
os: [ubuntu-latest, windows-latest, macos-latest]
29-
python-version: ['3.7', '3.8', '3.9', '3.10']
29+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
3030

3131
steps:
3232
- uses: actions/checkout@v3

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
strategy:
4141
matrix:
4242
os: [ubuntu-latest, windows-latest, macos-latest]
43-
python-version: ['3.7', '3.8', '3.9', '3.10']
43+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
4444

4545
steps:
4646
- uses: actions/checkout@v3

binding/python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Cobra is a highly accurate and lightweight voice activity detection (VAD) engine
66

77
## Compatibility
88

9-
- Python 3.7+
9+
- Python 3.8+
1010
- Runs on Linux (x86_64), macOS (x86_64), Windows (x86_64), Raspberry Pi, NVIDIA Jetson (Nano), and BeagleBone.
1111

1212
## Installation

binding/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,6 @@
7474
"Programming Language :: Python :: 3",
7575
"Topic :: Multimedia :: Sound/Audio :: Speech"
7676
],
77-
python_requires='>=3.7',
77+
python_requires='>=3.8',
7878
keywords="voice activity detection engine, VAD",
7979
)

demo/python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Cobra is a highly accurate and lightweight voice activity detection (VAD) engine
1111

1212
## Compatibility
1313

14-
- Python 3.7+
14+
- Python 3.8+
1515
- Runs on Linux (x86_64), macOS (x86_64 and arm64), Windows (x86_64), Raspberry Pi, NVIDIA Jetson (Nano), and BeagleBone.
1616

1717
## AccessKey

demo/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@
5252
'cobra_demo_mic=pvcobrademo.cobra_demo_mic:main',
5353
],
5454
),
55-
python_requires='>=3.5',
55+
python_requires='>=3.8',
5656
keywords="voice activity detection engine, VAD",
5757
)

0 commit comments

Comments
 (0)