From c0aad4cdee30cb273937771d7e2cff4c4b35b08b Mon Sep 17 00:00:00 2001 From: sarah-beasley <106670682+sarah-beasley@users.noreply.github.com> Date: Wed, 7 May 2025 09:31:52 +0100 Subject: [PATCH 1/9] Update requirements.txt --- scripts/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/requirements.txt b/scripts/requirements.txt index 3575f084a11..761afb73887 100644 --- a/scripts/requirements.txt +++ b/scripts/requirements.txt @@ -1,5 +1,5 @@ git+https://github.com/dougmet/yamlmd -git+https://github.com/open-sdg/sdg-build@2.3.0 +git+https://github.com/open-sdg/sdg-build@2.4.0-beta1 xlrd==1.2.0 openpyxl==3.1.0 frictionless==4.40.8 From c8866a9a5f39c11bca91945324b08facfccb4e78 Mon Sep 17 00:00:00 2001 From: sarah-beasley <106670682+sarah-beasley@users.noreply.github.com> Date: Wed, 7 May 2025 09:32:43 +0100 Subject: [PATCH 2/9] Update config_data.yml --- config_data.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config_data.yml b/config_data.yml index 7fd7e9b99f1..1a952d54ec3 100644 --- a/config_data.yml +++ b/config_data.yml @@ -34,7 +34,7 @@ src_dir: '' translations: - class: TranslationInputSdgTranslations source: https://github.com/open-sdg/sdg-translations.git - tag: 2.3.0 + tag: 2.4.0-beta1 # Reporting status extra fields # ----------------------------- From 9839307a148a0f1d7b73e188d7e957dc893584d3 Mon Sep 17 00:00:00 2001 From: sarah-beasley <106670682+sarah-beasley@users.noreply.github.com> Date: Thu, 8 May 2025 09:31:39 +0100 Subject: [PATCH 3/9] Update deploy-to-production.yml --- .github/workflows/deploy-to-production.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-to-production.yml b/.github/workflows/deploy-to-production.yml index df893816e1c..6ff38cd31dd 100644 --- a/.github/workflows/deploy-to-production.yml +++ b/.github/workflows/deploy-to-production.yml @@ -36,10 +36,10 @@ jobs: with: persist-credentials: false fetch-depth: 0 - - name: Set up Python 3.7 - uses: actions/setup-python@v1 + - name: Set up Python 3.8 + uses: actions/setup-python@v2 with: - python-version: 3.7 + python-version: 3.8 - name: Install dependencies run: | python -m pip install --upgrade pip From ead84f8f2a8a442fa19862dacc2d8ef22ee97007 Mon Sep 17 00:00:00 2001 From: sarah-beasley <106670682+sarah-beasley@users.noreply.github.com> Date: Thu, 8 May 2025 09:32:10 +0100 Subject: [PATCH 4/9] Update deploy-to-staging.yml --- .github/workflows/deploy-to-staging.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-to-staging.yml b/.github/workflows/deploy-to-staging.yml index 4ea56292ccb..dee8ce0ad3b 100644 --- a/.github/workflows/deploy-to-staging.yml +++ b/.github/workflows/deploy-to-staging.yml @@ -30,10 +30,10 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 - - name: Set up Python 3.7 - uses: actions/setup-python@v1 + - name: Set up Python 3.8 + uses: actions/setup-python@v2 with: - python-version: 3.7 + python-version: 3.8 - name: Install dependencies run: | python -m pip install --upgrade pip From ff1822db78e2000405f967ad4a7d08fa6a0590a0 Mon Sep 17 00:00:00 2001 From: sarah-beasley <106670682+sarah-beasley@users.noreply.github.com> Date: Thu, 8 May 2025 09:32:30 +0100 Subject: [PATCH 5/9] Update test-pull-requests.yml --- .github/workflows/test-pull-requests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-pull-requests.yml b/.github/workflows/test-pull-requests.yml index ec7ce78456f..4d368fdc268 100644 --- a/.github/workflows/test-pull-requests.yml +++ b/.github/workflows/test-pull-requests.yml @@ -9,10 +9,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up Python 3.7 - uses: actions/setup-python@v1 + - name: Set up Python 3.8 + uses: actions/setup-python@v2 with: - python-version: 3.7 + python-version: 3.8 - name: Install dependencies run: | python -m pip install --upgrade pip From 771598d84ecf5a7d636b20d08f05de6edaafe8b2 Mon Sep 17 00:00:00 2001 From: sarah-beasley <106670682+sarah-beasley@users.noreply.github.com> Date: Thu, 8 May 2025 09:32:55 +0100 Subject: [PATCH 6/9] Update deploy-feature-branch.yml --- .github/workflows/deploy-feature-branch.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-feature-branch.yml b/.github/workflows/deploy-feature-branch.yml index a1030c5b1f2..b5efb2b1b76 100644 --- a/.github/workflows/deploy-feature-branch.yml +++ b/.github/workflows/deploy-feature-branch.yml @@ -23,10 +23,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - - name: Set up Python 3.7 - uses: actions/setup-python@v1 + - name: Set up Python 3.8 + uses: actions/setup-python@v2 with: - python-version: 3.7 + python-version: 3.8 - name: Install dependencies run: | python -m pip install --upgrade pip From cce8944c4496bb0e85b39334e97c8d173179d89e Mon Sep 17 00:00:00 2001 From: sarah-beasley <106670682+sarah-beasley@users.noreply.github.com> Date: Thu, 8 May 2025 09:33:26 +0100 Subject: [PATCH 7/9] Update deploy-to-aws --- .github/workflows/deploy-to-aws | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-to-aws b/.github/workflows/deploy-to-aws index 49fd0e3735a..e8ad044f3f6 100644 --- a/.github/workflows/deploy-to-aws +++ b/.github/workflows/deploy-to-aws @@ -14,10 +14,10 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 - - name: Set up Python 3.7 - uses: actions/setup-python@v1 + - name: Set up Python 3.8 + uses: actions/setup-python@v2 with: - python-version: 3.7 + python-version: 3.8 - name: Install dependencies run: | python -m pip install --upgrade pip From ed0785392819fc339850b0373b27746a1873798d Mon Sep 17 00:00:00 2001 From: sarah-beasley <106670682+sarah-beasley@users.noreply.github.com> Date: Tue, 29 Jul 2025 15:14:40 +0100 Subject: [PATCH 8/9] Update requirements.txt --- scripts/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/requirements.txt b/scripts/requirements.txt index 761afb73887..e58ed8ed791 100644 --- a/scripts/requirements.txt +++ b/scripts/requirements.txt @@ -1,5 +1,5 @@ git+https://github.com/dougmet/yamlmd -git+https://github.com/open-sdg/sdg-build@2.4.0-beta1 +git+https://github.com/open-sdg/sdg-build@2.4.0-beta5 xlrd==1.2.0 openpyxl==3.1.0 frictionless==4.40.8 From dc53e475ab5c9302d95ef2e20d43f796e01a1bd9 Mon Sep 17 00:00:00 2001 From: sarah-beasley <106670682+sarah-beasley@users.noreply.github.com> Date: Tue, 29 Jul 2025 15:15:02 +0100 Subject: [PATCH 9/9] Update config_data.yml --- config_data.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config_data.yml b/config_data.yml index 1a952d54ec3..be8568171b9 100644 --- a/config_data.yml +++ b/config_data.yml @@ -34,7 +34,7 @@ src_dir: '' translations: - class: TranslationInputSdgTranslations source: https://github.com/open-sdg/sdg-translations.git - tag: 2.4.0-beta1 + tag: 2.4.0-beta5 # Reporting status extra fields # -----------------------------