Skip to content

Commit 54f653b

Browse files
committed
chore: Update requirements for Django Cloud SQL
- Updated requirements and nox files for latest Django version.
1 parent 5bab839 commit 54f653b

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

appengine/flexible/django_cloudsql/noxfile_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
TEST_CONFIG_OVERRIDE = {
2424
# You can opt out from the test for specific Python versions.
25-
"ignored_versions": ["2.7", "3.7", "3.8", "3.10", "3.12", "3.13"],
25+
"ignored_versions": ["2.7", "3.7", "3.8", "3.9","3.10", "3.11"],
2626
# An envvar key for determining the project id to use. Change it
2727
# to 'BUILD_SPECIFIC_GCLOUD_PROJECT' if you want to opt in using a
2828
# build specific Cloud project. You can also use your own string
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Django==5.2.9
1+
Django==6.0.1; python_version >= "3.12"
22
gunicorn==23.0.0
3-
psycopg2-binary==2.9.10
3+
psycopg2-binary==2.9.11
44
django-environ==0.12.0
55
google-cloud-secret-manager==2.21.1
66
django-storages[google]==1.14.6

appengine/flexible/hello_world_django/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ env: flex
1717
entrypoint: gunicorn -b :$PORT project_name.wsgi
1818

1919
runtime_config:
20-
python_version: 3
20+
operating_system: "ubuntu24"

appengine/flexible/hello_world_django/project_name/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
from django.contrib import admin
16-
from django.urls import include, path
16+
from django.urls import path
1717

1818
import helloworld.views
1919

kubernetes_engine/django_tutorial/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ wheel==0.40.0
66
gunicorn==23.0.0; python_version > '3.0'
77
gunicorn==23.0.0; python_version < '3.0'
88
# psycopg2==2.8.4 # uncomment if you prefer to build from source
9-
psycopg2-binary==2.9.10
9+
psycopg2-binary==2.9.11

run/django/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Django==6.0.1; python_version >= "3.12"
22
django-storages[google]==1.14.6
33
django-environ==0.12.0
4-
psycopg2-binary==2.9.10
4+
psycopg2-binary==2.9.11
55
gunicorn==23.0.0
66
google-cloud-secret-manager==2.21.1

0 commit comments

Comments
 (0)