diff --git a/django_v2/Pipfile b/django_v2/Pipfile
index 1dd2c17134d245e8737488a3403f508a56a6c0c5..484820d07ef8ade910ceed5d9c55e4bc2cf64e19 100644
--- a/django_v2/Pipfile
+++ b/django_v2/Pipfile
@@ -12,7 +12,7 @@ verify_ssl = true
  # Python version declaration.
  ##
 [requires]
-python_version = "3.9"
+python_version = "3.11"
 
 
 ###
@@ -28,7 +28,9 @@ django-localflavor = "*"        # Easy implementation of localization info, such
  ##
 [dev-packages]
 # General dev dependencies.
+# django-adminlte2-pdq = "*"      # Adds framework for easily styling site like adminlte2.
 django-debug-toolbar = "*"      # Displays helpful debug-toolbar on side of browser window.
+# django-dump-die = "*"           # Dump-and-die debugging tool.
 
 # Syntax-checking dependencies.
 autopep8 = "*"                  # Auto-formats files for pep8 recommendations. See `setup.cfg` for our exceptions.
@@ -39,6 +41,7 @@ pylint-plugin-utils = "*"       # Additional pylint functionality for things lik
 
 # Testing/Pytest dependencies.
 coverage = "*"                  # Outputs testing coverage data.
+django-expanded-test-cases = "*"    # Utilities for easier testing.
 freezegun = "*"                 # Allows "freezing" tests to specific datetimes, for consistent checking and output.
 pytest = "*"                    # Base Pytest package. Current preferred testing method.
 pytest-django = "*"             # Additional Pytest logic for Django support.
diff --git a/django_v3/Pipfile b/django_v3/Pipfile
index b12b9d4a381b5a25807a69123f7b00c9aec15d88..f1acfa9c172b77d72e932e0dd71d3f26c72d6262 100644
--- a/django_v3/Pipfile
+++ b/django_v3/Pipfile
@@ -12,7 +12,7 @@ verify_ssl = true
  # Python version declaration.
  ##
 [requires]
-python_version = "3.9"
+python_version = "3.11"
 
 
 ###
diff --git a/django_v4/Pipfile b/django_v4/Pipfile
index 05f931dfa24444e28e844981f6715f42b35a7c49..4c49fac7df6874996374caed881b391ed141bf83 100644
--- a/django_v4/Pipfile
+++ b/django_v4/Pipfile
@@ -12,7 +12,7 @@ verify_ssl = true
  # Python version declaration.
  ##
 [requires]
-python_version = "3.9"
+python_version = "3.11"
 
 
 ###