From 8891fc0dd56806d55ed1112734a704376578194a Mon Sep 17 00:00:00 2001 From: Puneet Dixit <236133619+puneetdixit200@users.noreply.github.com> Date: Tue, 26 May 2026 11:46:58 +0530 Subject: [PATCH 1/3] Fix docs build import path --- docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 47c8b487..5a59def2 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,13 +22,13 @@ HERE = osp.abspath(osp.dirname(__file__)) ROOT = osp.dirname(osp.dirname(HERE)) +sys.path.insert(0, ROOT) from traitlets import __version__, version_info # noqa: E402 # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. -# sys.path.insert(0, os.path.abspath('.')) # -- General configuration ------------------------------------------------ From c7dfce9a24f0a94c17587badd840e9eb3f220f48 Mon Sep 17 00:00:00 2001 From: Deepak kudi Date: Tue, 26 May 2026 11:53:48 +0530 Subject: [PATCH 2/3] ci: repair stale workflow failures --- .github/workflows/downstream.yml | 4 ++-- .github/workflows/tests.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/downstream.yml b/.github/workflows/downstream.yml index 92b13b82..f0f87e14 100644 --- a/.github/workflows/downstream.yml +++ b/.github/workflows/downstream.yml @@ -19,7 +19,7 @@ jobs: - uses: jupyterlab/maintainer-tools/.github/actions/downstream-test@v1 with: package_name: ipython - package_spec: -e ".[test]" + package_spec: -e .[test] nbconvert: runs-on: ubuntu-latest @@ -30,7 +30,7 @@ jobs: - uses: jupyterlab/maintainer-tools/.github/actions/downstream-test@v1 with: package_name: nbconvert - package_spec: -e ".[test]" + package_spec: -e .[test] jupyter_server: runs-on: ubuntu-latest diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index dcbe96b0..adec8cac 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -31,7 +31,7 @@ jobs: - os: ubuntu-latest python-version: "3.12" - os: ubuntu-latest - python-version: "pypy-3.10" + python-version: "pypy-3.11" steps: - uses: actions/checkout@v4 From 5becbc3d9f408263d884b795e702448b2e15789f Mon Sep 17 00:00:00 2001 From: Deepak kudi Date: Tue, 26 May 2026 11:55:53 +0530 Subject: [PATCH 3/3] Fix CI dependency drift --- pyproject.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 923d17f1..a68f0848 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,9 +33,8 @@ Tracker = "https://github.com/ipython/traitlets/issues" [project.optional-dependencies] test = [ "argcomplete>=3.0.3", - "mypy>=1.7.0", - # see https://github.com/python/mypy/issues/20454 - "mypy>=1.7.0,<1.19 ; platform_python_implementation == 'PyPy'", + # mypy 1.19 dropped support for `python_version = "3.9"` targets. + "mypy>=1.7.0,<1.19", "pre-commit", "pytest-mock", "pytest-mypy-testing",