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
2 changes: 1 addition & 1 deletion .github/workflows/gds-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
with:
python-version: "3.11"
enable-cache: true
- run: uv sync --group dev --extra pandas --extra neo4j --extra gds --extra snowflake
- run: uv sync --group dev --extra pandas --extra neo4j --extra gds

- name: Run tests
env:
Expand Down
11 changes: 7 additions & 4 deletions python-wrapper/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ snowflake = ["snowflake-snowpark-python>=1, <2"]

[dependency-groups]
dev = [
"ruff==0.15.16",
"mypy==1.20.2",
"ruff==0.15.17",
"mypy==2.1.0",
"pytest==9.0.3",
"selenium==4.44.0",
"ipykernel==7.2.0",
"ipykernel==7.3.0",
"palettable==3.3.3",
"pytest-mock==3.15.1",
"nbconvert==7.17.1",
Expand All @@ -65,6 +65,9 @@ dev = [
"python-dotenv"
]
docs = [
# Sphinx is capped at 8.1.x: 8.2+ requires Python >=3.11 and Sphinx 9 requires >=3.12
# (the docs group must satisfy requires-python = ">=3.10"), and Sphinx 9 also breaks
# `enum_tools.autoenum` (removed `logger` from `sphinx.ext.autodoc`).
"sphinx==8.1.3",
"enum-tools[sphinx]",
"nbsphinx==0.9.8",
Expand All @@ -77,7 +80,7 @@ notebook = [
"ipywidgets>=8.0.0",
"palettable>=3.3.3",
"matplotlib>=3.9.4",
"snowflake-snowpark-python==1.51.1",
"snowflake-snowpark-python==1.52.0",
"requests",
"marimo",
"python-dotenv"
Expand Down
Loading
Loading