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
1 change: 0 additions & 1 deletion docs/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
"sphinx.ext.autodoc",
"sphinx.ext.napoleon",
"sphinx.ext.viewcode",
"pydata_sphinx_theme",
]

# Add any paths that contain templates here, relative to this directory.
Expand Down
6 changes: 3 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
set shell := ["bash", "-cu"]

# Create and sync the local uv environment with all project extras.
# Create and sync the local uv environment with all project dependency groups.
env:
uv sync --extra dev --extra docs --extra featurization
uv sync --group dev --group docs --group notebooks

# Re-sync environment after dependency changes.
sync:
uv sync --extra dev --extra docs --extra featurization
uv sync --group dev --group docs --group notebooks
Comment on lines +3 to +9
Copy link

Copilot AI Apr 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sync/env installs the notebooks dependency group (jupyterlab, etc.), but none of the targets executed by just all (lint/test/coverage/docs) appear to require those heavy notebook-only dependencies. Pulling them into the default CI/pre-commit path can significantly increase install time and introduce extra platform-specific resolution risk. Consider limiting env/sync to the groups actually needed for all (e.g., dev+docs), and add a separate recipe for notebook tooling when required.

Copilot uses AI. Check for mistakes.

# Run tests with coverage gate from pyproject settings.
test:
Expand Down
26 changes: 13 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=64", "setuptools-scm>=8" ]
requires = [ "setuptools>=82.0.1", "setuptools-scm>=10.0.5" ]

[project]
name = "zedprofiler"
Expand All @@ -17,30 +17,30 @@ classifiers = [
"Programming Language :: Python :: 3.14",
]
dependencies = [
"fire>=0.7",
"fire>=0.7.1",
"jinja2>=3.1.6",
"pandas>=2.2.3",
"pandas>=3.0.2",
]
scripts.ZedProfiler = "ZedProfiler.cli:trigger"

[dependency-groups]
dev = [
"poethepoet>=0.34",
"pytest>=8.3.5",
"poethepoet>=0.44",
"pytest>=9.0.3",
"pytest-cov>=5",
"ruff>=0.15.10",
]
docs = [
"myst-nb>=1.2",
"pydata-sphinx-theme>=0.16.1",
"sphinx>=8.2.3",
"myst-nb>=1.4",
"pydata-sphinx-theme>=0.17",
"sphinx>=9.1",
]
notebooks = [
"black>=25.1",
"isort>=6.0.1",
"jupyterlab>=4.4.2",
"jupyterlab-code-formatter>=3.0.2",
"jupytext>=1.17.1",
"black>=26.3.1",
"isort>=8.0.1",
"jupyterlab>=4.5.6",
"jupyterlab-code-formatter>=3.0.3",
"jupytext>=1.19.1",
]

[tool.setuptools_scm]
Expand Down
Loading
Loading