From 090fbe5787d5501c902b3e9292d6c98646f4baa1 Mon Sep 17 00:00:00 2001 From: Rik Bouwmeester Date: Wed, 16 Oct 2024 10:58:03 +0200 Subject: [PATCH 1/2] Bump required Python version to 3.10 --- .github/workflows/dependency_check.yml | 4 ++-- docs/installation/install.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dependency_check.yml b/.github/workflows/dependency_check.yml index 62e847543..a9e0317f7 100644 --- a/.github/workflows/dependency_check.yml +++ b/.github/workflows/dependency_check.yml @@ -34,10 +34,10 @@ jobs: - name: install lib run: pip install -e . - minimum-python37: + minimum-python310: runs-on: ubuntu-latest container: - image: python:3.7 + image: python:3.10 steps: - uses: actions/checkout@v4 diff --git a/docs/installation/install.md b/docs/installation/install.md index d89785c80..f8c696dda 100644 --- a/docs/installation/install.md +++ b/docs/installation/install.md @@ -5,7 +5,7 @@ page_id: install ## Requirements -This project requires Python 3.8 - 3.12. +This project requires Python 3.10+. See below sections for more platform-specific requirements. From 7c669c2840bee9b3647660455d61ef3b2f1bc662 Mon Sep 17 00:00:00 2001 From: Rik Bouwmeester Date: Wed, 16 Oct 2024 10:58:17 +0200 Subject: [PATCH 2/2] Re-enable latest Python dependency check --- .github/workflows/dependency_check.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/dependency_check.yml b/.github/workflows/dependency_check.yml index a9e0317f7..f2d09c69d 100644 --- a/.github/workflows/dependency_check.yml +++ b/.github/workflows/dependency_check.yml @@ -6,19 +6,19 @@ on: - cron: '0 2 * * *' jobs: -# python-latest: -# runs-on: ubuntu-latest -# container: -# image: python:latest -# -# steps: -# - uses: actions/checkout@v4 -# -# - name: python version -# run: python --version -# -# - name: install lib -# run: pip install -e . + python-latest: + runs-on: ubuntu-latest + container: + image: python:latest + + steps: + - uses: actions/checkout@v4 + + - name: python version + run: python --version + + - name: install lib + run: pip install -e . python-python311: runs-on: ubuntu-latest