diff options
author | Jos Verlinde <Jos.Verlinde@Microsoft.com> | 2023-09-22 18:00:36 +0000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2023-10-02 12:35:12 +1100 |
commit | a93ebd0e0368a44f92322d0dbf45bab49165a891 (patch) | |
tree | d1475f19d325beb7eb852d81979adfdb027a8288 /.github | |
parent | da193c42f6c767fe0c185e50598a48c95b562327 (diff) | |
download | micropython-a93ebd0e0368a44f92322d0dbf45bab49165a891.tar.gz micropython-a93ebd0e0368a44f92322d0dbf45bab49165a891.zip |
docs: Add requirements.txt file with dependencies for Sphinx.
Signed-off-by: Jos Verlinde <Jos.Verlinde@Microsoft.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/docs.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index afc3166f3d..a0105d6ca6 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -17,6 +17,6 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-python@v4 - name: Install Python packages - run: pip install Sphinx + run: pip install -r docs/requirements.txt - name: Build docs run: make -C docs/ html |