-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Beets crashes on Python 3.8 #3201
Comments
So it looks like the call signature of beets/beets/util/functemplate.py Line 144 in 728267d
To something like this; if sys.version_info >= (3, 8):
mod = ast.Module([func_def], [])
else:
mod = ast.Module([func_def])
It might be worth enabling 3.8 on Travis too, although it is only officially being released in October this year. |
Fix issue caused by ast.Module changing signature in 3.8 causing a TypeError. Fix suggested from: beetbox/beets#3201 (comment)
Problem
Beets crashes when running any command.
Setup
My configuration (output of
beet config
) is:empty
I've also compiled the wheel from git master obviously, I was having this issue from just installing it from pip normally, so I thought doing this manually would solve my issues, but it didn't. I don't really understand why this error occurs, but I imagine it has something to do with the dependencies of this project.
The text was updated successfully, but these errors were encountered: