-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: updated to python 3.12 #118
base: main
Are you sure you want to change the base?
Conversation
Coverage reportClick to see where and how coverage changed
This report was generated by python-coverage-comment-action |
CHANGELOG.rst
Outdated
@@ -15,6 +15,10 @@ Unreleased | |||
********** | |||
* Add LearningAssistantMessage model | |||
|
|||
4.3.3 - 2024-10-15 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to update version number and date.
learning_assistant/api.py
Outdated
@@ -102,6 +102,7 @@ def get_block_content(request, user_id, course_id, unit_usage_key): | |||
return cache_data['content_length'], cache_data['content_items'] | |||
|
|||
|
|||
# pylint: disable=too-many-positional-arguments) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's disable this warning in the pylintrc_tweaks
instead.
setup.py
Outdated
@@ -6,7 +6,7 @@ | |||
import re | |||
import sys | |||
|
|||
from setuptools import find_packages, setup | |||
from setuptools import find_packages, setup # pylint: disable=import-error |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's disable this warning in pylintrc_tweaks
instead.
No description provided.