Skip to content

Commit 6855d2e

Browse files
committed
Whoopsie!
Turns out StrEnum didn't exist before python 3.11. So that's the minimum version.
1 parent 2dad955 commit 6855d2e

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
19+
python-version: ["3.11", "3.12", "3.13", "3.14"]
2020

2121
steps:
2222
- uses: actions/checkout@v4

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[flake8]
22
exclude =
33
.git,
4+
.github,
45
__pycache__
56
max-complexity = 10
67
per-file-ignores = __init__.py:F401

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
long_description_content_type="text/markdown",
1515
url="https://github.com/aefarrell/PymoTube",
1616
license='MIT',
17-
python_requires='>=3.13',
17+
python_requires='>=3.11',
1818
install_requires=['bleak']
1919
)

0 commit comments

Comments
 (0)