Skip to content
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

fix: update deprecated xblock-utils to xblock.utils #18

Merged
merged 1 commit into from
Feb 20, 2025
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
2 changes: 1 addition & 1 deletion ai_coach/ai_coach.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from xblockutils.studio_editable import StudioEditableXBlockMixin
from xblock.utils.studio_editable import StudioEditableXBlockMixin
from xblock.fields import Float, Integer, Scope, String
from xblock.core import XBlock
from xblock.completable import CompletableXBlockMixin
Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import os

from pathlib import Path
from setuptools import setup
from setuptools import find_packages, setup


this_directory = Path(__file__).parent
Expand Down Expand Up @@ -36,13 +36,13 @@ def package_data(pkg, roots):
url='https://github.com/edly-io/ai-coach-xblock',
license='AGPL v3',
author='edly',
packages=[
'ai_coach',
],
packages=find_packages(
include=['ai_coach', 'ai_coach.*'],
exclude=["*tests"],
),
install_requires=[
'XBlock',
'openai==1.3.5',
'xblock-utils'
'openai==1.3.5'
],
entry_points={
'xblock.v1': [
Expand Down