Skip to content

Commit

Permalink
Merge pull request #68 from Picovoice/remove-python3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ksyeo1010 authored Jun 18, 2024
2 parents 03c5731 + e02bafa commit f655e42
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion binding/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion binding/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
)
2 changes: 1 addition & 1 deletion demo/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion demo/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
)

0 comments on commit f655e42

Please sign in to comment.