Opened 3 years ago

Closed 3 years ago

#32188 closed Bug (invalid)

Pipenv latest version of Django is 3.0.11 rather than 3.1.*

Reported by: Joween Flores Owned by: nobody
Component: Uncategorized Version: 3.1
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Joween Flores)

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!

Change History (3)

comment:1 by Joween Flores, 3 years ago

Description: modified (diff)

comment:2 by Joween Flores, 3 years ago

Description: modified (diff)

comment:3 by Carlton Gibson, 3 years ago

Resolution: invalid
Status: newclosed

Hi. I think the appropriate place for this would be the pipenv issue tracker. Thanks.

Note: See TracTickets for help on using tickets.
Back to Top