From 0b77d8a3528047932db55341a418f9def072799d Mon Sep 17 00:00:00 2001 From: Tomii Poll Date: Fri, 21 Feb 2025 12:53:43 +0000 Subject: [PATCH 1/3] Update to Python 3.10 --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c3f595..4a6ca61 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,10 +10,10 @@ jobs: MYPY: venv/bin/mypy steps: - uses: actions/checkout@v4 - - name: Set up Python 3.8 + - name: Set up Python 3.10 uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.10 - name: Set up virtualenv run: python -m venv venv - name: Install dependencies @@ -34,10 +34,10 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Set up Python 3.8 + - name: Set up Python 3.10 uses: actions/setup-python@v5 with: - python-version: "3.8" + python-version: "3.10" - name: Install dependencies run: | python -m pip install --upgrade pip build @@ -56,4 +56,4 @@ jobs: if: ${{ github.ref_type == 'tag' }} uses: pypa/gh-action-pypi-publish@release/v1 with: - print_hash: true + print-hash: true From c7e13f822e4a778c6b6d0da50234fc4465c4492d Mon Sep 17 00:00:00 2001 From: Tomii Poll Date: Fri, 21 Feb 2025 12:56:46 +0000 Subject: [PATCH 2/3] Update linter dependencies --- script/linting/requirements.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/script/linting/requirements.txt b/script/linting/requirements.txt index e0f34d7..2a6784a 100644 --- a/script/linting/requirements.txt +++ b/script/linting/requirements.txt @@ -1,9 +1,9 @@ -flake8==4.0.1 -flake8-builtins==1.5.3 -flake8-commas==2.1.0 -flake8-comprehensions==3.10.0 +flake8==7.1.2 +flake8-builtins==2.5.0 +flake8-commas==4.0.0 +flake8-comprehensions==3.16.0 flake8-debugger==4.1.2 -flake8-isort==4.1.2.post0 +flake8-isort==6.1.2 flake8-mutable==1.2.0 flake8-todo==0.7 flake8-tuple==0.4.1 From 196558e7089224858363c66b7df9f107b23b8a8a Mon Sep 17 00:00:00 2001 From: Tommy Poll Date: Fri, 21 Feb 2025 13:03:00 +0000 Subject: [PATCH 3/3] "3.10", not 3.1 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a6ca61..a4485b5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: - name: Set up Python 3.10 uses: actions/setup-python@v5 with: - python-version: 3.10 + python-version: "3.10" - name: Set up virtualenv run: python -m venv venv - name: Install dependencies