From f16791e5b11772d45704b2a7e4911daa17c12259 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wr=C3=B3bel?= Date: Mon, 19 Jul 2021 16:55:51 +0200 Subject: [PATCH] #377: - removed python3 deps --- .github/workflows/deploy_docs.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml index 1f7a1c4bc..83c2de8a6 100644 --- a/.github/workflows/deploy_docs.yml +++ b/.github/workflows/deploy_docs.yml @@ -13,10 +13,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up Python 2.7 + - name: Set up Python 3.9 uses: actions/setup-python@v2 with: - python-version: '2.7' + python-version: '3.9' architecture: 'x64' - name: Display Python version run: | @@ -24,7 +24,6 @@ jobs: python3 -c "import sys; print(sys.version)" - name: Install Python dependencies run: | - pip2 install docutils pip3 install sphinx sphinx-rtd-theme - name: Build documentation working-directory: ${{env.working-directory}}