Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 48 for uv (0.01 seconds)

  1. .pre-commit-config.yaml

          - id: check-added-large-files
            args: ['--maxkb=750']
            exclude: ^uv.lock$
          - id: check-toml
          - id: check-yaml
            args:
            - --unsafe
          - id: end-of-file-fixer
          - id: trailing-whitespace
    
      - repo: local
        hooks:
          - id: local-ruff-check
            name: ruff check
            entry: uv run ruff check --force-exclude --fix --exit-non-zero-on-fix
            require_serial: true
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Apr 03 12:06:36 GMT 2026
    - 2.6K bytes
    - Click Count (1)
  2. .github/workflows/build-docs.yml

          - name: Setup uv
            uses: astral-sh/setup-uv@v7
            with:
              enable-cache: true
              cache-dependency-glob: |
                pyproject.toml
                uv.lock
          - name: Install docs extras
            run: uv sync --locked --no-dev --group docs
          - name: Export Language Codes
            id: show-langs
            run: |
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 14 15:01:34 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  3. .github/workflows/publish.yml

          - name: Set up Python
            uses: actions/setup-python@v6
            with:
              python-version-file: ".python-version"
          - name: Install uv
            uses: astral-sh/setup-uv@v7
          - name: Build distribution
            run: uv build
          - name: Publish
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 21 16:45:15 GMT 2026
    - 629 bytes
    - Click Count (0)
  4. docs/en/docs/virtual-environments.md

    * `.venv`: create the virtual environment in the new directory `.venv`
    
    ///
    
    ////
    
    //// tab | `uv`
    
    If you have [`uv`](https://github.com/astral-sh/uv) installed, you can use it to create a virtual environment.
    
    <div class="termy">
    
    ```console
    $ uv venv
    ```
    
    </div>
    
    /// tip
    
    By default, `uv` will create a virtual environment in a directory called `.venv`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 22.1K bytes
    - Click Count (0)
  5. .github/workflows/smokeshow.yml

          - uses: actions/setup-python@v6
            with:
              python-version-file: ".python-version"
          - name: Setup uv
            uses: astral-sh/setup-uv@v7
            with:
              cache-dependency-glob: |
                pyproject.toml
                uv.lock
          - run: uv sync --locked --no-dev --group github-actions
          - uses: actions/download-artifact@v8
            with:
              name: coverage-html
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Mar 03 00:12:02 GMT 2026
    - 1.6K bytes
    - Click Count (0)
  6. docs/zh/docs/virtual-environments.md

    * `venv`: 使用名为 `venv` 的模块,这个模块通常随 Python 一起安装
    * `.venv`: 在新目录 `.venv` 中创建虚拟环境
    
    ///
    
    ////
    
    //// tab | `uv`
    
    如果你安装了 [`uv`](https://github.com/astral-sh/uv),你也可以使用它来创建一个虚拟环境。
    
    <div class="termy">
    
    ```console
    $ uv venv
    ```
    
    </div>
    
    /// tip | 提示
    
    默认情况下,`uv` 会在一个名为 `.venv` 的目录中创建一个虚拟环境。
    
    但你可以通过传递一个额外的参数来自定义它,指定目录的名称。
    
    ///
    
    ////
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 21.4K bytes
    - Click Count (0)
  7. docs/ja/docs/virtual-environments.md

    * `.venv`: 仮想環境を`.venv`という新しいディレクトリに作成します
    
    ///
    
    ////
    
    //// tab | `uv`
    
    もし [`uv`](https://github.com/astral-sh/uv) をインストール済みなら、仮想環境を作成するために `uv` を使うこともできます。
    
    <div class="termy">
    
    ```console
    $ uv venv
    ```
    
    </div>
    
    /// tip | 豆知識
    
    デフォルトでは、 `uv` は `.venv` というディレクトリに仮想環境を作成します。
    
    ただし、追加の引数にディレクトリ名を与えてカスタマイズすることもできます。
    
    ///
    
    ////
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 28.5K bytes
    - Click Count (0)
  8. .github/workflows/test.yml

          - name: Setup uv
            uses: astral-sh/setup-uv@v7
            with:
              enable-cache: true
              cache-dependency-glob: |
                pyproject.toml
                uv.lock
          - name: Install Dependencies
            run: uv sync --no-dev --group tests --extra all
          - name: Ensure that we have the lowest supported Pydantic version
            if: matrix.uv-resolution == 'lowest-direct'
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 12:36:49 GMT 2026
    - 6.4K bytes
    - Click Count (0)
  9. .github/workflows/translate.yml

          - name: Setup uv
            uses: astral-sh/setup-uv@v7
            with:
              cache-dependency-glob: |
                pyproject.toml
                uv.lock
          - name: Install Dependencies
            run: uv sync --locked --no-dev --group github-actions --group translations
          - name: Export Language Codes
            id: show-langs
            run: |
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Mar 18 15:36:56 GMT 2026
    - 4K bytes
    - Click Count (0)
  10. .github/workflows/deploy-docs.yml

          - name: Setup uv
            uses: astral-sh/setup-uv@v7
            with:
              enable-cache: true
              cache-dependency-glob: |
                pyproject.toml
                uv.lock
          - name: Install GitHub Actions dependencies
            run: uv sync --locked --no-dev --group github-actions
          - name: Deploy Docs Status Pending
            run: uv run ./scripts/deploy_docs_status.py
            env:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Mar 03 00:12:02 GMT 2026
    - 2.7K bytes
    - Click Count (0)
Back to Top