-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lets fly with python 3.12 and django 5.1.3 and newer libs
- Loading branch information
Andrzej Kostanski
authored and
Andrzej Kostanski
committed
Nov 14, 2024
1 parent
757f397
commit 7a36e98
Showing
12 changed files
with
46 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM python:3.6 | ||
FROM python:3.12 | ||
|
||
ENV PYTHONUNBUFFERED 1 | ||
ENV DJANGO_ENV dev | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from django.conf.urls import include, url | ||
from django.urls import include, re_path | ||
from django.contrib import admin | ||
|
||
urlpatterns = [ | ||
url(r'^admin/', admin.site.urls), | ||
url(r'^api/', include('api.urls')), | ||
re_path(r'^admin/', admin.site.urls), | ||
re_path(r'^api/', include('api.urls')), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
host all all all scram-sha-256 | ||
|
||
host demo postgres ::1/128 password |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
listen_addresses = '*' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
Django==3.0.5 | ||
djangorestframework==3.11.0 | ||
psycopg2-binary==2.7.5 | ||
django-extensions==2.1.4 | ||
numpy==1.16.1 | ||
ipdb==0.11 | ||
django-map-widgets==0.3.0 | ||
pytest==5.2.0 | ||
pytest-django==3.4.7 | ||
Django==5.1.3 | ||
djangorestframework==3.15.2 | ||
psycopg2-binary==2.9.10 | ||
django-extensions==3.2.3 | ||
numpy==2.1.3 | ||
ipdb==0.13.13 | ||
django-map-widgets==0.5.1 | ||
pytest==8.3.3 | ||
pytest-django==4.9.0 |