Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: HKUDS/DeepTutor
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.2.3
Choose a base ref
...
head repository: HKUDS/DeepTutor
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.2.4
Choose a head ref
  • 9 commits
  • 38 files changed
  • 5 contributors

Commits on Apr 24, 2026

  1. fix(scripts): prefer uv pip over python -m pip in start_tour.py

    uv-managed .venv environments may have pip disabled (PEP 668 / uv's
    default hardening).  Running `python -m pip install` inside such a venv
    raises a CalledProcessError even though uv itself is available.
    
    Introduce `_resolve_pip_cmd()` which checks `shutil.which("uv")` at startup:
    
    - uv found  → use ["uv", "pip"] (uv auto-detects the active venv)
    - uv absent → fall back to [_PYTHON, "-m", "pip"] (no regression)
    
    All pip invocations in `_bootstrap()` and `_install_commands()` now use
    `_PIP_CMD` instead of the hard-coded `[_PYTHON, "-m", "pip"]` prefix.
    zouchengfu committed Apr 24, 2026
    Configuration menu
    Copy the full SHA
    55e744a View commit details
    Browse the repository at this point in the history
  2. fix: tour

    pancacake committed Apr 24, 2026
    Configuration menu
    Copy the full SHA
    b5eab8b View commit details
    Browse the repository at this point in the history
  3. docs: update readme

    pancacake committed Apr 24, 2026
    Configuration menu
    Copy the full SHA
    e8a569a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5b133ef View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2026

  1. fix: use npm.cmd for version detection on Windows

    On Windows, npm is installed as npm.cmd rather than a plain executable.
    subprocess.run(['npm', '--version']) without shell=True raises
    FileNotFoundError, causing the Node.js detection step to always report
    npm as missing even when it is properly installed.
    
    Reuse the existing _get_npm_command() helper (which already returns
    npm.cmd on Windows) for the version-detection call, consistent with
    how npm is invoked later during npm install.
    jonathanzhan1975 committed Apr 25, 2026
    Configuration menu
    Copy the full SHA
    5586b78 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #381 from jonathanzhan1975/fix/npm-cmd-detection-w…

    …indows
    
    fix: use npm.cmd for version detection on Windows
    pancacake authored Apr 25, 2026
    Configuration menu
    Copy the full SHA
    a524aba View commit details
    Browse the repository at this point in the history
  3. Merge pull request #376 from rogercsi/fix/uv-pip-compat

    fix(scripts): prefer uv pip over python -m pip in start_tour.py
    pancacake authored Apr 25, 2026
    Configuration menu
    Copy the full SHA
    f2686c4 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #379 from kKamUL/docs/polish-readme-translation

    docs: add Polish translation of README
    pancacake authored Apr 25, 2026
    Configuration menu
    Copy the full SHA
    d7649b7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c89a3df View commit details
    Browse the repository at this point in the history
Loading