Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
All configuration values have a default; values that are commented out
serve to show the default.
"""

import os
import re
import sys
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,13 @@ def create_course(self) -> None:
"display_name": f"Course {self.course_shortname}",
}

log.info(
f"""Creating course:
log.info(f"""Creating course:
Instructor: {self.instructor.id}
Org: "OEX"
Number: "{self.course_shortname}"
Run: "2024-1"
Fields: {fields}
"""
)
""")

self.course = create_new_course_in_store(
ModuleStoreEnum.Type.split,
Expand Down
6 changes: 2 additions & 4 deletions platform_plugin_aspects/xblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,10 @@ class SupersetXBlock(StudioEditableXBlockMixin, XBlock):

filters = List(
display_name=_("Filters"),
help=_(
"""List of SQL filters to apply to the
help=_("""List of SQL filters to apply to the
dashboard. E.g: ["org='edX'", "country in ('us', 'co')"]
The fields used here must be available on every dataset used by the dashboard.
"""
),
"""),
default=[],
scope=Scope.settings,
)
Expand Down
6 changes: 3 additions & 3 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ billiard==4.2.4
# via
# -r requirements/quality.txt
# celery
black==25.12.0
black==26.1.0
# via
# -r requirements/dev.in
# -r requirements/quality.txt
Expand Down Expand Up @@ -210,7 +210,7 @@ mccabe==0.7.0
# via
# -r requirements/quality.txt
# pylint
model-bakery==1.21.0
model-bakery==1.22.1
# via
# -r requirements/quality.txt
# django-mock-queries
Expand Down Expand Up @@ -402,7 +402,7 @@ text-unidecode==1.3
# via
# -r requirements/quality.txt
# python-slugify
tomlkit==0.13.3
tomlkit==0.14.0
# via
# -r requirements/quality.txt
# pylint
Expand Down
6 changes: 3 additions & 3 deletions requirements/doc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ iniconfig==2.3.0
# pytest
jaraco-classes==3.4.0
# via keyring
jaraco-context==6.0.2
jaraco-context==6.1.0
# via keyring
jaraco-functools==4.4.0
# via keyring
Expand Down Expand Up @@ -190,7 +190,7 @@ markupsafe==3.0.3
# xblock
mdurl==0.1.2
# via markdown-it-py
model-bakery==1.21.0
model-bakery==1.22.1
# via
# -r requirements/test.txt
# django-mock-queries
Expand Down Expand Up @@ -331,7 +331,7 @@ six==1.17.0
# python-dateutil
snowballstemmer==3.0.1
# via sphinx
soupsieve==2.8.1
soupsieve==2.8.2
# via beautifulsoup4
sphinx==9.0.4
# via
Expand Down
6 changes: 3 additions & 3 deletions requirements/quality.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ billiard==4.2.4
# via
# -r requirements/test.txt
# celery
black==25.12.0
black==26.1.0
# via -r requirements/quality.in
celery==5.6.2
# via -r requirements/test.txt
Expand Down Expand Up @@ -163,7 +163,7 @@ markupsafe==3.0.3
# xblock
mccabe==0.7.0
# via pylint
model-bakery==1.21.0
model-bakery==1.22.1
# via
# -r requirements/test.txt
# django-mock-queries
Expand Down Expand Up @@ -312,7 +312,7 @@ text-unidecode==1.3
# via
# -r requirements/test.txt
# python-slugify
tomlkit==0.13.3
tomlkit==0.14.0
# via pylint
typing-extensions==4.15.0
# via
Expand Down
2 changes: 1 addition & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ markupsafe==3.0.3
# jinja2
# mako
# xblock
model-bakery==1.21.0
model-bakery==1.22.1
# via django-mock-queries
oauthlib==3.3.1
# via
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"""
Package metadata for platform_plugin_aspects.
"""

import os
import re
import sys
Expand Down
Loading