diff --git a/backend/Pipfile b/backend/Pipfile index e123a847..2e379c9f 100644 --- a/backend/Pipfile +++ b/backend/Pipfile @@ -23,7 +23,7 @@ name = "pypi" # 5. Run `pipenv install --dev` in your terminal. [packages] -codeforlife = {ref = "v0.14.0", git = "https://github.com/ocadotechnology/codeforlife-package-python.git"} +codeforlife = {ref = "v0.14.5", git = "https://github.com/ocadotechnology/codeforlife-package-python.git"} # 🚫 Don't add [packages] below that are inhertited from the CFL package. # TODO: check if we need the below packages whitenoise = "==6.5.0" @@ -48,7 +48,7 @@ google-cloud-container = "==2.3.0" # "django-anymail[amazon_ses]" = "==7.0.*" [dev-packages] -codeforlife = {ref = "v0.14.0", git = "https://github.com/ocadotechnology/codeforlife-package-python.git", extras = ["dev"]} +codeforlife = {ref = "v0.14.5", git = "https://github.com/ocadotechnology/codeforlife-package-python.git", extras = ["dev"]} # codeforlife = {file = "../../codeforlife-package-python", editable = true, extras = ["dev"]} # 🚫 Don't add [dev-packages] below that are inhertited from the CFL package. # TODO: check if we need the below packages diff --git a/backend/Pipfile.lock b/backend/Pipfile.lock index 0a7b7bfb..02961975 100644 --- a/backend/Pipfile.lock +++ b/backend/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "09c37329e214e7e995e8ea94ed491e92d58b85fc68f030add1d73ec542696d9b" + "sha256": "c9775dbeb9de6e7aaba5136896d5633e921dd947f37711a83930d7949605e2d8" }, "pipfile-spec": 6, "requires": { @@ -168,7 +168,7 @@ }, "codeforlife": { "git": "https://github.com/ocadotechnology/codeforlife-package-python.git", - "ref": "e7560bc3052a818b26b795982df4d23629f91cf4" + "ref": "3944581dd6cf015b10c3ef410db386fcd8df39ed" }, "codeforlife-portal": { "hashes": [ @@ -1514,7 +1514,7 @@ }, "codeforlife": { "git": "https://github.com/ocadotechnology/codeforlife-package-python.git", - "ref": "e7560bc3052a818b26b795982df4d23629f91cf4" + "ref": "3944581dd6cf015b10c3ef410db386fcd8df39ed" }, "codeforlife-portal": { "hashes": [ @@ -2495,7 +2495,7 @@ "sha256:c7c6ca206e93355074ae32f7403e8ea12163b1163c976fee7d4d84027c162be5", "sha256:d45e0952f3727241918b8fd0f376f5ff6b301cc0777c6f9a556935c92d8a7d42" ], - "markers": "python_version < '3.10'", + "markers": "python_version >= '3.7'", "version": "==7.2.1" }, "pytest-cov": { diff --git a/backend/api/tests/views/test_user.py b/backend/api/tests/views/test_user.py index 6e0e5999..d9a12931 100644 --- a/backend/api/tests/views/test_user.py +++ b/backend/api/tests/views/test_user.py @@ -54,7 +54,7 @@ def setUp(self): self.non_admin_school_teacher_user = ( NonAdminSchoolTeacherUser.objects.get(email="teacher@school1.com") ) - self.indy_user = IndependentUser.objects.get(email="indy@man.com") + self.indy_user = IndependentUser.objects.get(email="indy@email.com") self.class_1 = Class.objects.get(name="Class 1 @ School 1") self.class_2 = Class.objects.get(name="Class 2 @ School 1")