Skip to content

Commit a3feeec

Browse files
committed
feat: update django-simple-history to latest version
1 parent 3af5826 commit a3feeec

File tree

12 files changed

+48
-56
lines changed

12 files changed

+48
-56
lines changed

openassessment/staffgrader/tests/test_get_submission_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from uuid import uuid4
44

55
from mock import patch, Mock
6-
from submissions import api as sub_api
6+
from submissions import errors as sub_api
77

88
from openassessment.xblock.test.base import scenario
99
from openassessment.data import VersionNotFoundException

openassessment/xblock/apis/submissions/submissions_actions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
import os
88

99
from opaque_keys.edx.keys import CourseKey
10-
from submissions.api import Submission, SubmissionError, SubmissionRequestError
10+
from submissions.api import Submission, SubmissionRequestError
11+
from submissions.errors import SubmissionError
1112

1213
from openassessment.fileupload.exceptions import FileUploadError
1314
from openassessment.workflow.errors import AssessmentWorkflowError

requirements/base.txt

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ attrs==25.3.0
1212
# via openedx-events
1313
bleach==6.2.0
1414
# via -r requirements/base.in
15-
boto3==1.38.18
15+
boto3==1.38.22
1616
# via -r requirements/base.in
17-
botocore==1.38.18
17+
botocore==1.38.22
1818
# via
1919
# boto3
2020
# s3transfer
@@ -24,7 +24,7 @@ cffi==1.17.1
2424
# via pynacl
2525
charset-normalizer==3.4.2
2626
# via requests
27-
click==8.2.0
27+
click==8.2.1
2828
# via
2929
# code-annotations
3030
# edx-django-utils
@@ -39,6 +39,7 @@ django==4.2.21
3939
# -r requirements/base.in
4040
# django-crum
4141
# django-model-utils
42+
# django-simple-history
4243
# django-waffle
4344
# djangorestframework
4445
# edx-django-release-util
@@ -57,7 +58,7 @@ django-model-utils==5.0.0
5758
# via
5859
# -r requirements/base.in
5960
# edx-submissions
60-
django-simple-history==3.1.1
61+
django-simple-history==3.8.0
6162
# via
6263
# -c requirements/constraints.txt
6364
# -r requirements/base.in
@@ -75,7 +76,7 @@ edx-ccx-keys==2.0.2
7576
# via openedx-events
7677
edx-django-release-util==1.5.0
7778
# via edx-submissions
78-
edx-django-utils==7.4.0
79+
edx-django-utils==8.0.0
7980
# via
8081
# -r requirements/base.in
8182
# edx-toggles
@@ -88,7 +89,7 @@ edx-opaque-keys[django]==3.0.0
8889
# edx-ccx-keys
8990
# openedx-events
9091
# openedx-filters
91-
edx-submissions==3.10.1
92+
edx-submissions==3.11.0
9293
# via -r requirements/base.in
9394
edx-toggles==5.3.0
9495
# via -r requirements/base.in
@@ -135,8 +136,6 @@ markupsafe==3.0.2
135136
# jinja2
136137
# mako
137138
# xblock
138-
newrelic==10.12.0
139-
# via edx-django-utils
140139
openedx-events==10.2.1
141140
# via -r requirements/base.in
142141
openedx-filters==2.1.0
@@ -185,7 +184,7 @@ pyyaml==6.0.2
185184
# xblock
186185
requests==2.32.3
187186
# via python-swiftclient
188-
s3transfer==0.12.0
187+
s3transfer==0.13.0
189188
# via boto3
190189
simplejson==3.20.1
191190
# via xblock
@@ -229,7 +228,7 @@ xblock==5.2.0
229228
# via -r requirements/base.in
230229

231230
# The following packages are considered to be unsafe in a requirements file:
232-
setuptools==80.7.1
231+
setuptools==80.8.0
233232
# via
234233
# fs
235234
# openedx-events

requirements/ci.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ colorama==0.4.6
2020
# via
2121
# -r requirements/tox.txt
2222
# tox
23-
coverage[toml]==7.8.0
23+
coverage[toml]==7.8.2
2424
# via coveralls
2525
coveralls==4.0.1
2626
# via -r requirements/ci.in
@@ -71,5 +71,5 @@ virtualenv==20.31.2
7171
# tox
7272

7373
# The following packages are considered to be unsafe in a requirements file:
74-
setuptools==80.7.1
74+
setuptools==80.8.0
7575
# via -r requirements/ci.in

requirements/common_constraints.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11

2+
23
# A central location for most common version constraints
34
# (across edx repos) for pip-installation.
45
#

requirements/constraints.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ moto<5.0
2424
path<13.2.0
2525

2626
# incremental upgrade plan.
27-
django-simple-history<=3.1.1
27+
django-simple-history<=3.8.0
2828

2929
# backports.zoneinfo is only needed for Python < 3.9
3030
backports.zoneinfo; python_version<'3.9'

requirements/docs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ certifi==2025.4.26
2222
# via requests
2323
charset-normalizer==3.4.2
2424
# via requests
25-
click==8.2.0
25+
click==8.2.1
2626
# via uvicorn
2727
colorama==0.4.6
2828
# via sphinx-autobuild

requirements/pip-tools.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
build==1.2.2.post1
88
# via pip-tools
9-
click==8.2.0
9+
click==8.2.1
1010
# via pip-tools
1111
packaging==25.0
1212
# via build

requirements/pip.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ wheel==0.45.1
1010
# The following packages are considered to be unsafe in a requirements file:
1111
pip==24.2
1212
# via
13-
# -c /home/runner/work/edx-ora2/edx-ora2/requirements/common_constraints.txt
13+
# -c requirements/common_constraints.txt
1414
# -r requirements/pip.in
15-
setuptools==80.7.1
15+
setuptools==80.8.0
1616
# via -r requirements/pip.in

requirements/quality.txt

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ binaryornot==0.4.4
3838
# cookiecutter
3939
bleach==6.2.0
4040
# via -r requirements/test.txt
41-
boto3==1.38.18
41+
boto3==1.38.22
4242
# via
4343
# -r requirements/test.txt
4444
# fs-s3fs
4545
# moto
46-
botocore==1.38.18
46+
botocore==1.38.22
4747
# via
4848
# -r requirements/test.txt
4949
# boto3
@@ -73,7 +73,7 @@ charset-normalizer==3.4.2
7373
# via
7474
# -r requirements/test.txt
7575
# requests
76-
click==8.2.0
76+
click==8.2.1
7777
# via
7878
# -r requirements/test.txt
7979
# celery
@@ -112,7 +112,7 @@ cookiecutter==2.6.0
112112
# via
113113
# -r requirements/test.txt
114114
# xblock-sdk
115-
coverage[toml]==7.8.0
115+
coverage[toml]==7.8.2
116116
# via
117117
# -r requirements/test.txt
118118
# pytest-cov
@@ -139,6 +139,7 @@ django==4.2.21
139139
# -r requirements/test.txt
140140
# django-crum
141141
# django-model-utils
142+
# django-simple-history
142143
# django-waffle
143144
# djangorestframework
144145
# edx-django-release-util
@@ -159,7 +160,7 @@ django-model-utils==5.0.0
159160
# via
160161
# -r requirements/test.txt
161162
# edx-submissions
162-
django-simple-history==3.1.1
163+
django-simple-history==3.8.0
163164
# via
164165
# -c requirements/constraints.txt
165166
# -r requirements/test.txt
@@ -184,7 +185,7 @@ edx-django-release-util==1.5.0
184185
# via
185186
# -r requirements/test.txt
186187
# edx-submissions
187-
edx-django-utils==7.4.0
188+
edx-django-utils==8.0.0
188189
# via
189190
# -r requirements/test.txt
190191
# edx-toggles
@@ -199,7 +200,7 @@ edx-opaque-keys[django]==3.0.0
199200
# edx-ccx-keys
200201
# openedx-events
201202
# openedx-filters
202-
edx-submissions==3.10.1
203+
edx-submissions==3.11.0
203204
# via -r requirements/test.txt
204205
edx-toggles==5.3.0
205206
# via -r requirements/test.txt
@@ -311,10 +312,6 @@ moto==4.2.14
311312
# via
312313
# -c requirements/constraints.txt
313314
# -r requirements/test.txt
314-
newrelic==10.12.0
315-
# via
316-
# -r requirements/test.txt
317-
# edx-django-utils
318315
openedx-events==10.2.1
319316
# via -r requirements/test.txt
320317
openedx-filters==2.1.0
@@ -458,7 +455,7 @@ rich==14.0.0
458455
# via
459456
# -r requirements/test.txt
460457
# cookiecutter
461-
s3transfer==0.12.0
458+
s3transfer==0.13.0
462459
# via
463460
# -r requirements/test.txt
464461
# boto3
@@ -568,7 +565,7 @@ xmltodict==0.14.2
568565
# moto
569566

570567
# The following packages are considered to be unsafe in a requirements file:
571-
setuptools==80.7.1
568+
setuptools==80.8.0
572569
# via
573570
# fs
574571
# openedx-events

0 commit comments

Comments
 (0)