﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
32188	Pipenv latest version of Django is 3.0.11 rather than 3.1.*	Joween Flores	nobody	"I was creating a new Django App when I encountered a weird error:
{{{
return database_name == ':memory:' or 'mode=memory' in database_name TypeError: argument of type 'WindowsPath' is not iterable
}}}
when migrating. I traced back and known that this was an issue in <=3.0.11 so I checked the Django version installed it was 3.0.11. I ran 
{{{
pipenv updated --outdated
}}}
on my previous Django 3.1.3 app and got this:
{{{
Package 'Django' out-of-date: '==3.1.3' installed, '==3.0.11' available.
}}}
creating an app via 
{{{
pipenv install django
}}}
defaults to installing the previous 3.0.11 version. 

For now the workaround installing the specific version older than 3.1 by:

{{{
pipenv install 'django>=3.1.*'
}}}

or with argon-package:

{{{
pipenv install 'django[argon2]>=3.1.*'
}}}

I'm not sure where should I report this so just posting it here FYI.

Thanks!"	Bug	closed	Uncategorized	3.1	Normal	invalid			Unreviewed	0	0	0	0	0	0
