Skip to content

Commit

Permalink
Remove the beet executable and update shebangs (#5303)
Browse files Browse the repository at this point in the history
## Description

This is a very simple PR, just removing the (apparently unused) `beet`
executable from the repository and substituting `bin/env python` for
`bin/python3` where possible.

Fixes #4604.
  • Loading branch information
Serene-Arc authored Jun 15, 2024
2 parents 461a1c6 + 8b3890b commit 8a28fd5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 23 deletions.
21 changes: 0 additions & 21 deletions beet

This file was deleted.

1 change: 1 addition & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Bug fixes:
For packagers:

* The minimum supported Python version is now 3.8.
* The `beet` script has been removed from the repository.

Other changes:

Expand Down
2 changes: 1 addition & 1 deletion test/rsrc/convert_stub.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

"""A tiny tool used to test the `convert` plugin. It copies a file and appends
a specified text tag.
Expand Down
2 changes: 1 addition & 1 deletion test/testall.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

# This file is part of beets.
# Copyright 2016, Adrian Sampson.
Expand Down

0 comments on commit 8a28fd5

Please sign in to comment.