diff --git a/beet b/beet deleted file mode 100755 index abf55ec27..000000000 --- a/beet +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env python - -# This file is part of beets. -# Copyright 2016, Adrian Sampson. -# -# Permission is hereby granted, free of charge, to any person obtaining -# a copy of this software and associated documentation files (the -# "Software"), to deal in the Software without restriction, including -# without limitation the rights to use, copy, modify, merge, publish, -# distribute, sublicense, and/or sell copies of the Software, and to -# permit persons to whom the Software is furnished to do so, subject to -# the following conditions: -# -# The above copyright notice and this permission notice shall be -# included in all copies or substantial portions of the Software. - - -import beets.ui - -if __name__ == '__main__': - beets.ui.main() diff --git a/docs/changelog.rst b/docs/changelog.rst index b970f5ee5..3725e4993 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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: diff --git a/test/rsrc/convert_stub.py b/test/rsrc/convert_stub.py index 14282c8ce..cba693c4e 100755 --- a/test/rsrc/convert_stub.py +++ b/test/rsrc/convert_stub.py @@ -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. diff --git a/test/testall.py b/test/testall.py index b96815eb8..27d852a77 100755 --- a/test/testall.py +++ b/test/testall.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # This file is part of beets. # Copyright 2016, Adrian Sampson.