From 3a940b1df8c61080bdc804462a4e344c2735f0ca Mon Sep 17 00:00:00 2001 From: jjavier-bm Date: Sat, 14 Sep 2024 19:21:25 +0100 Subject: [PATCH 1/5] docs language='en' --- docs/conf.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index b05923b..775de99 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -27,7 +27,7 @@ # -- General configuration --------------------------------------------------- # If your documentation needs a minimal Sphinx version, state it here. -needs_sphinx = '1.6.2' +needs_sphinx = '2' master_doc='index' @@ -83,7 +83,8 @@ # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. -language = None +# language = None +language = 'en' # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: From 86b004b503ec583f7f0ede968d800086bc058793 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Javier=20Burgos-M=C3=A1rmol?= <58219514+jjavier-bm@users.noreply.github.com> Date: Sat, 14 Sep 2024 19:52:39 +0100 Subject: [PATCH 2/5] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4fd7b9e..95e531e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.7, 3.8, 3.9, "3.10", "3.11"] + python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v1 From f0bd89201dc64251f15c83bf99a271ef45457268 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Javier=20Burgos-M=C3=A1rmol?= <58219514+jjavier-bm@users.noreply.github.com> Date: Sat, 14 Sep 2024 19:55:05 +0100 Subject: [PATCH 3/5] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 95e531e..4545af4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v1 From b31c8d5a95ca7248062981f19c4de76844e2a4a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Javier=20Burgos-M=C3=A1rmol?= <58219514+jjavier-bm@users.noreply.github.com> Date: Sat, 14 Sep 2024 20:00:13 +0100 Subject: [PATCH 4/5] Update main.yml --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4545af4..9c91a23 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,10 +20,12 @@ jobs: steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} architecture: 'x64' + env: + AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache - name: Install dependencies run: | python -m pip install --upgrade pip From cfff5830d978ce2565982b90e0a599ae8ee79f50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Javier=20Burgos-M=C3=A1rmol?= <58219514+jjavier-bm@users.noreply.github.com> Date: Sat, 14 Sep 2024 20:05:28 +0100 Subject: [PATCH 5/5] Update main.yml --- .github/workflows/main.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9c91a23..88c568d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,12 +20,11 @@ jobs: steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} architecture: 'x64' - env: - AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache + - name: Install dependencies run: | python -m pip install --upgrade pip