forked from 00dani/lemoncurry
Upgrade Django to 2.0.3, yay!
This commit is contained in:
parent
452dd3f47d
commit
365110544c
3 changed files with 6 additions and 6 deletions
2
Pipfile
2
Pipfile
|
@ -12,7 +12,7 @@ python_version = '3.6'
|
||||||
|
|
||||||
[packages]
|
[packages]
|
||||||
|
|
||||||
django = ">=1.11,<2.0"
|
django = "*"
|
||||||
django-compressor = "*"
|
django-compressor = "*"
|
||||||
gunicorn = "*"
|
gunicorn = "*"
|
||||||
"psycopg2" = "*"
|
"psycopg2" = "*"
|
||||||
|
|
8
Pipfile.lock
generated
8
Pipfile.lock
generated
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"_meta": {
|
"_meta": {
|
||||||
"hash": {
|
"hash": {
|
||||||
"sha256": "266f9ea66b0c2e5de023d3adbb665c72ad8260e22222a3db871eeab310ba5f8b"
|
"sha256": "a824f0af4df1d0088d5dd66db92329358a5cf0095c71f1cb59f6e60583b912f5"
|
||||||
},
|
},
|
||||||
"host-environment-markers": {
|
"host-environment-markers": {
|
||||||
"implementation_name": "cpython",
|
"implementation_name": "cpython",
|
||||||
|
@ -146,10 +146,10 @@
|
||||||
},
|
},
|
||||||
"django": {
|
"django": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
"sha256:fd186d544c7c2f835668cf11f77be071307c9eb22615a5b3a16bdb14c8357f41",
|
"sha256:3d9916515599f757043c690ae2b5ea28666afa09779636351da505396cbb2f19",
|
||||||
"sha256:74077d7309b48b97dacdac2dfb35c968028becf00a7a684e7f29b2af1b980edc"
|
"sha256:769f212ffd5762f72c764fa648fca3b7f7dd4ec27407198b68e7c4abf4609fd0"
|
||||||
],
|
],
|
||||||
"version": "==1.11.11"
|
"version": "==2.0.3"
|
||||||
},
|
},
|
||||||
"django-activeurl": {
|
"django-activeurl": {
|
||||||
"hashes": [
|
"hashes": [
|
||||||
|
|
|
@ -68,7 +68,7 @@ def create(request):
|
||||||
|
|
||||||
entry.kind = kind.id
|
entry.kind = kind.id
|
||||||
entry.save()
|
entry.save()
|
||||||
entry.cats = cats
|
entry.cats.set(cats)
|
||||||
entry.save()
|
entry.save()
|
||||||
|
|
||||||
base = utils.origin(request)
|
base = utils.origin(request)
|
||||||
|
|
Loading…
Reference in a new issue