diff --git a/.github/workflows/django.yml b/.github/workflows/django.yml index 3a75bb1..a41cfac 100644 --- a/.github/workflows/django.yml +++ b/.github/workflows/django.yml @@ -11,7 +11,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: ["3.10"] + python-version: ["3.11", "3.12"] steps: - uses: actions/checkout@v4 diff --git a/Pipfile b/Pipfile index 1e67e2e..19b810a 100644 --- a/Pipfile +++ b/Pipfile @@ -13,4 +13,4 @@ isort = "*" mypy = "*" [requires] -python_version = "3.10" +python_version = "3.11" diff --git a/Pipfile.lock b/Pipfile.lock index d0ce927..7cb56b0 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,11 +1,11 @@ { "_meta": { "hash": { - "sha256": "10178c8a9a81923e594e286373b2b1d41ede8d9571061308aefd7b75f6da10e3" + "sha256": "f2e0f95e2cafd500e2a1e9accc086889be2554491dce81c6582187c0225376d0" }, "pipfile-spec": 6, "requires": { - "python_version": "3.10" + "python_version": "3.11" }, "sources": [ { diff --git a/personal_portfolio/urls.py b/personal_portfolio/urls.py index 22e14e5..80ef585 100644 --- a/personal_portfolio/urls.py +++ b/personal_portfolio/urls.py @@ -14,6 +14,7 @@ 1. Import the include() function: from django.urls import include, path 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ + from django.conf import settings from django.conf.urls.static import static from django.contrib import admin