Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.9', '3.10', '3.11']
python-version: ['3.10', '3.11', '3.12']

steps:
- name: Checkout
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
rm -rf "jupyter_ai_tools"

- name: Upload artifact
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'
uses: actions/upload-artifact@v4
with:
name: my_server_extension-sdist
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.10'
architecture: 'x64'
- uses: actions/download-artifact@v4
with:
Expand Down
12 changes: 12 additions & 0 deletions jupyter_ai_tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
from .toolkits.code_execution import toolkit as codeexec_toolkit
from .toolkits.file_system import toolkit as fs_toolkit
from .toolkits.git import toolkit as git_toolkit
from .toolkits.notebook import toolkit as notebook_toolkit

__version__ = "0.2.1"

__all__ = [
"fs_toolkit",
"codeexec_toolkit",
"git_toolkit",
"notebook_toolkit",
]


def _jupyter_server_extension_points():
return [{"module": "jupyter_ai_tools"}]
Expand Down