Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for toXml (0.07 sec)

  1. .github/workflows/pre-commit.yml

            with:
              python-version: "3.14"
          - name: Setup uv
            uses: astral-sh/setup-uv@v7
            with:
              cache-dependency-glob: |
                requirements**.txt
                pyproject.toml
                uv.lock
          - name: Install Dependencies
            run: |
              uv venv
              uv pip install -r requirements.txt
          - name: Run prek - pre-commit
            id: precommit
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 23 11:17:16 UTC 2025
    - 3K bytes
    - Viewed (0)
  2. .github/workflows/deploy-docs.yml

          - name: Setup uv
            uses: astral-sh/setup-uv@v7
            with:
              version: "0.4.15"
              enable-cache: true
              cache-dependency-glob: |
                requirements**.txt
                pyproject.toml
          - name: Install GitHub Actions dependencies
            run: uv pip install -r requirements-github-actions.txt
          - name: Deploy Docs Status Pending
            run: python ./scripts/deploy_docs_status.py
            env:
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Nov 21 13:03:21 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  3. docs/en/docs/management-tasks.md

    * `upgrade`: Upgrades
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  4. docs/zh/docs/deployment/docker.md

    
    
    ```{ .dockerfile .annotate }
    # (1)
    FROM python:3.9 as requirements-stage
    
    # (2)
    WORKDIR /tmp
    
    # (3)
    RUN pip install poetry
    
    # (4)
    COPY ./pyproject.toml ./poetry.lock* /tmp/
    
    # (5)
    RUN poetry export -f requirements.txt --output requirements.txt --without-hashes
    
    # (6)
    FROM python:3.9
    
    # (7)
    WORKDIR /code
    
    # (8)
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Aug 12 21:47:53 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  5. docs/ru/docs/virtual-environments.md

    /// tip | Подсказка
    
    Очень хорошая идея — указать используемые вашим проектом пакеты и их версии в файле (например, `requirements.txt` или `pyproject.toml`).
    
    ///
    
    //// tab | `pip`
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[standard]"
    
    ---> 100%
    ```
    
    </div>
    
    ////
    
    //// tab | `uv`
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Dec 11 21:25:03 UTC 2025
    - 34.2K bytes
    - Viewed (0)
  6. docs/de/docs/virtual-environments.md

    /// tip | Tipp
    
    Es ist eine (sehr) gute Idee, die Pakete und Versionen, die Ihr Programm benötigt, in einer Datei zu speichern (zum Beispiel `requirements.txt` oder `pyproject.toml`).
    
    ///
    
    //// tab | `pip`
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[standard]"
    
    ---> 100%
    ```
    
    </div>
    
    ////
    
    //// tab | `uv`
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 02 17:32:56 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  7. docs/en/docs/virtual-environments.md

    /// tip
    
    It's a (very) good idea to put the packages and versions your program needs in a file (for example `requirements.txt` or `pyproject.toml`).
    
    ///
    
    //// tab | `pip`
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[standard]"
    
    ---> 100%
    ```
    
    </div>
    
    ////
    
    //// tab | `uv`
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 02 05:09:25 UTC 2025
    - 22.8K bytes
    - Viewed (0)
  8. docs/ko/docs/deployment/docker.md

    ```{ .dockerfile .annotate }
    # (1)
    FROM python:3.9 as requirements-stage
    
    # (2)
    WORKDIR /tmp
    
    # (3)
    RUN pip install poetry
    
    # (4)
    COPY ./pyproject.toml ./poetry.lock* /tmp/
    
    # (5)
    RUN poetry export -f requirements.txt --output requirements.txt --without-hashes
    
    # (6)
    FROM python:3.9
    
    # (7)
    WORKDIR /code
    
    # (8)
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  9. docs/zh-hant/docs/virtual-environments.md

    當你需要安裝或升級套件時,執行本操作**一次**;
    
    如果你需要再升級版本或新增套件,你可以**再次執行此操作**。
    
    ///
    
    ### 直接安裝套件
    
    如果你急於安裝,不想使用檔案來聲明專案的套件依賴,你可以直接安裝它們。
    
    /// tip
    
    將程式所需的套件及其版本放在檔案中(例如 `requirements.txt` 或 `pyproject.toml`)是個好(而且非常好)的主意。
    
    ///
    
    //// tab | `pip`
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[standard]"
    
    ---> 100%
    ```
    
    </div>
    
    ////
    
    //// tab | `uv`
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Dec 09 22:39:33 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. docs/zh/docs/virtual-environments.md

    当你需要安装或升级软件包时,执行本操作**一次**;
    
    如果你需要再升级版本或添加新软件包,你可以**再次执行此操作**。
    
    ///
    
    ### 直接安装包
    
    如果你急于安装,不想使用文件来声明工程的软件包依赖,您可以直接安装它们。
    
    /// tip
    
    将程序所需的软件包及其版本放在文件中(例如 `requirements.txt` 或 `pyproject.toml`)是个好(并且非常好)的主意。
    
    ///
    
    //// tab | `pip`
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[standard]"
    
    ---> 100%
    ```
    
    </div>
    
    ////
    
    //// tab | `uv`
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Nov 08 19:23:26 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top