Skip to content

Commit

Permalink
Merge pull request #44 from geigerzaehler/require-python-3-9
Browse files Browse the repository at this point in the history
Require Python 3.9 and do cleanup
  • Loading branch information
geigerzaehler authored Sep 11, 2024
2 parents b0ce050 + d4ff455 commit 22c5b23
Show file tree
Hide file tree
Showing 7 changed files with 165 additions and 180 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
python-version:
- "3.8" # minimum required
- "3.9" # minimum required
- "3.12" # latest
- "3.13-dev" # next

Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
- run: pip install poetry
- uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9
cache: poetry
- run: poetry env use $(which python)
- run: poetry install
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.8
3.9
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Upcoming

- Require Python >=3.9

## v0.14.1 2024-07-11

- Require beets >=1.6.1 and support beets v2.x
Expand Down
3 changes: 0 additions & 3 deletions beetsplug/__init__.py

This file was deleted.

312 changes: 157 additions & 155 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ classifiers = [
packages = [{ include = "beetsplug" }]

[tool.poetry.dependencies]
python = "^3.8, >=3.8.1"
python = "^3.9, >=3.8.1"
beets = ">=1.6.1, <3"
mediafile = "^0.12.0"

Expand Down
18 changes: 0 additions & 18 deletions tox.ini

This file was deleted.

0 comments on commit 22c5b23

Please sign in to comment.