Skip to content

Commit 1f0a5f8

Browse files
fix python version (#77)
1 parent 82403bf commit 1f0a5f8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python 3.10
2020
uses: actions/setup-python@v5
2121
with:
22-
python-version: 3.10
22+
python-version: '3.10'
2323

2424
- name: Setup UV
2525
uses: astral-sh/setup-uv@v5
@@ -93,7 +93,7 @@ jobs:
9393
runs-on: ${{ matrix.os }}
9494
strategy:
9595
matrix:
96-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
96+
python-version: ["3.10", "3.11", "3.12", "3.13"]
9797
os: [ubuntu-22.04, windows-2022, macos-14]
9898
arch: [auto64]
9999

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = { text = "CC-BY-NC 4.0" }
99
authors = [
1010
{name = "Mahmoud Ashraf", email = "[email protected]"},]
1111
dynamic = ["version", "dependencies"]
12-
requires-python = ">= 3.9"
12+
requires-python = ">= 3.10"
1313

1414
[tool.setuptools.dynamic]
1515
version = {attr = "ctc_forced_aligner.__version__"}

0 commit comments

Comments
 (0)