Skip to content

Commit 67f52f8

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

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

appengine/flexible/django_cloudsql/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Django==5.2.9
1+
Django==6.0.1; python_version >= "3.12"
22
gunicorn==23.0.0
33
psycopg2-binary==2.9.10
44
django-environ==0.12.0

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

0 commit comments

Comments
 (0)