getting this error when trying to install the latest version
ERROR: Could not find a version that satisfies the requirement djangorestframework-simplejwt==4.4.0 (from versions: 1.0, 1.1, 1.2, 1.2.1, 1.3, 1.4, 1.5.1, 2.0.0, 2.0.1, 2.0.2, 2.0.3, 2.0.4, 2.0.5, 2.1, 3.0, 3.1, 3.2, 3.2.1, 3.2.2, 3.2.3, 3.3, 4.0.0, 4.1.0, 4.1.1, 4.1.2, 4.1.3, 4.1.4)
ERROR: No matching distribution found for djangorestframework-simplejwt==4.4.0
Just installed it. Not sure what the problem is. Try going to https://pypi.org/project/djangorestframework-simplejwt/ and copy and paste their command.
turns out this is a python 3.9 support issue. was trying to install the package using the python:3.9-alpine docker base image.
using python:3.8-alpine and everything works fine
@danvaneijck Ah I see. There was a different issue regarding some Python 3.9 block that is supposed to be released for v5.0.0. Sorry about this! We're close to release!
Although I would encourage you to try out Python 3.9 by asking Stack Overflow or Python Discord server and see if anyone knows how to override this.
Is This fixed? Because I just installed a new environment with python 3.9, and had the same problem above.
Which python version does djangorestframework-simplejwt support currently ?
Use 4.6.0 and you'll have no problem
Most helpful comment
turns out this is a python 3.9 support issue. was trying to install the package using the python:3.9-alpine docker base image.
using python:3.8-alpine and everything works fine