Skip to content

Commit

Permalink
build: declare our actual requirement on Python 3.8
Browse files Browse the repository at this point in the history
We use torchaudio 2.1.0 which requires Python 3.8. We prefer 3.10 but don't
actually depend on it yet for this repo, so we can declare it at >=3.8.
  • Loading branch information
joanise committed Jan 17, 2024
1 parent 0c865dd commit e749ed0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Setup for g2p
""" Setup for wav2vec2aligner
"""
import datetime as dt
from os import path
Expand All @@ -14,7 +14,7 @@

setup(
name="ctc-segmentation-aligner",
python_requires=">=3.6",
python_requires=">=3.8",
version="1.0",
author="Aidan Pine",
author_email="hello@aidanpine.ca",
Expand Down

0 comments on commit e749ed0

Please sign in to comment.