Closed mgorny closed 1 week ago
Hey @mgorny
Technically we don't currently support python versions above 3.9, but having tested 3.10 here #108 It seems to work fine.
Since 3.11 isn't released yet, I wouldn't look too much into this myself, at this point at least.
If you want to implement a fix for this, feel free to submit a PR.
Cheers! -Anssi
Since 3.11 isn't released yet, I wouldn't look too much into this myself, at this point at least.
It's past feature freeze already, so right now it's the best time to fix packages so they're ready when the time comes ;-).
If you want to implement a fix for this, feel free to submit a PR.
Will do that shortly.
By the way, I've noticed that the Sort
enum is a bit weird here, as normally it doesn't return enum values but the underlying string:
>>> discogs_client.utils.Sort.By.ARTIST
<<< 'artist'
>>> discogs_client.utils.Sort.By.value.ARTIST
<<< <By.ARTIST: 'artist'>
I don't know if this has any practical implications but it certainly looks suspicious.
Fixed in 3.7.1
Thank you!
Two tests are failing with Python 3.11.0b3. I think it's due to changed
enum
repr: