From 717fcf9a0ed99033965821a6a8197e2fa15d1748 Mon Sep 17 00:00:00 2001 From: Eric Joanis Date: Mon, 19 Aug 2024 14:50:08 -0400 Subject: [PATCH] fix: generate py39 wheels too The absence of soundswallower-0.6.4-cp39-cp39-win_amd64.whl on pypi means I (and therefore Studio CLI users) cannot install ReadAlongs/Studio on my windows machine using Python 3.9 without installing the MS Visual Studio compiler. So add py39 wheels to pyproject.toml so they're generated next time we release. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index e2ca1da..ee96eb3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,6 +42,7 @@ soundswallower = "soundswallower.cli:main" # Build a reduced selection of binaries as there are tons of them build = [ "cp38-*", + "cp39-*", "cp310-*", "cp311-*", "cp312-*",