Skip to content

Commit 22c5b23

Browse files
Merge pull request #44 from geigerzaehler/require-python-3-9
Require Python 3.9 and do cleanup
2 parents b0ce050 + d4ff455 commit 22c5b23

File tree

7 files changed

+165
-180
lines changed

7 files changed

+165
-180
lines changed

.github/workflows/main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
python-version:
10-
- "3.8" # minimum required
10+
- "3.9" # minimum required
1111
- "3.12" # latest
1212
- "3.13-dev" # next
1313

@@ -41,7 +41,7 @@ jobs:
4141
- run: pip install poetry
4242
- uses: actions/setup-python@v5
4343
with:
44-
python-version: 3.8
44+
python-version: 3.9
4545
cache: poetry
4646
- run: poetry env use $(which python)
4747
- run: poetry install

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.8
1+
3.9

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## Upcoming
4+
5+
- Require Python >=3.9
6+
37
## v0.14.1 2024-07-11
48

59
- Require beets >=1.6.1 and support beets v2.x

beetsplug/__init__.py

Lines changed: 0 additions & 3 deletions
This file was deleted.

poetry.lock

Lines changed: 157 additions & 155 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ classifiers = [
1717
packages = [{ include = "beetsplug" }]
1818

1919
[tool.poetry.dependencies]
20-
python = "^3.8, >=3.8.1"
20+
python = "^3.9, >=3.8.1"
2121
beets = ">=1.6.1, <3"
2222
mediafile = "^0.12.0"
2323

tox.ini

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)