Skip to content

Commit

Permalink
fix: update deprecated xblock-utils to xblock.utils (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
Danyal-Faheem authored Feb 20, 2025
1 parent 91c1a39 commit 811c8b8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
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

0 comments on commit 811c8b8

Please sign in to comment.