From c9417b44b5425ad64b4f4a64951d3901b9e2648c Mon Sep 17 00:00:00 2001 From: Rocco Meli Date: Mon, 15 Apr 2024 22:21:17 +0200 Subject: [PATCH 1/5] update actions --- .github/workflows/flake8.yml | 4 ++-- .github/workflows/mypy.yml | 4 ++-- .github/workflows/pypi.yml | 4 ++-- .github/workflows/pytest.yml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/flake8.yml b/.github/workflows/flake8.yml index f28604e..2fa5744 100644 --- a/.github/workflows/flake8.yml +++ b/.github/workflows/flake8.yml @@ -16,9 +16,9 @@ jobs: python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install Dependencies diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index 23fda8a..ebaf04f 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -16,9 +16,9 @@ jobs: python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install Dependencies diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 218a798..829580e 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -11,9 +11,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.x' - name: Install dependencies diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 4fbbf94..7f2979a 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -38,7 +38,7 @@ jobs: - {os: "macOS-14", graphlib: "all", chemlib: "rdkit", python-version: "3.12"} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Info shell: bash @@ -70,7 +70,7 @@ jobs: pytest -v --benchmark --cov=spyrmsd --cov-report=xml --color=yes tests/ - name: CodeCov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: file: ./coverage.xml flags: unittests From 6dc0465048ccb4a02a6d132c5dd0a08993c5175f Mon Sep 17 00:00:00 2001 From: Rocco Meli Date: Mon, 15 Apr 2024 22:23:37 +0200 Subject: [PATCH 2/5] changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6111ad..3ae41ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ Contributors: @RMeli ### Changed +* Versions of several GitHub Actions [PR #120 | @RMeli] * Location of backend tests to standalone file [PR #118 | @RMeli] ### Removed From 30c0f23cc767a31413f7b7c8b69cb290fb87879c Mon Sep 17 00:00:00 2001 From: Rocco Meli Date: Mon, 15 Apr 2024 22:29:33 +0200 Subject: [PATCH 3/5] update pre-commit --- .pre-commit-config.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6da5c7c..f90cebf 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,7 +4,7 @@ exclude: | )$ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 + rev: v4.6.0 hooks: - id: check-json - id: check-merge-conflict @@ -14,20 +14,20 @@ repos: - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/psf/black - rev: 23.7.0 + rev: 24.4.0 hooks: - id: black - repo: https://github.com/PyCQA/flake8 - rev: 6.1.0 + rev: 7.0.0 hooks: - id: flake8 - repo: https://github.com/PyCQA/isort - rev: 5.12.0 + rev: 5.13.2 hooks: - id: isort args: ["--profile", "black"] - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.5.1 + rev: v1.9.0 hooks: - id: mypy additional_dependencies: [types-requests] From 440f2c4fbfe99d789b31204e7544b67d42f2d2d0 Mon Sep 17 00:00:00 2001 From: Rocco Meli Date: Mon, 15 Apr 2024 22:31:44 +0200 Subject: [PATCH 4/5] cl --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ae41ba..9b1c90f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ Contributors: @RMeli ### Changed +* `pre-commit` versions [PR #120 | @RMeli] * Versions of several GitHub Actions [PR #120 | @RMeli] * Location of backend tests to standalone file [PR #118 | @RMeli] From 98d8b995b6bc7bb3262627d7aa32e85e25f99163 Mon Sep 17 00:00:00 2001 From: Rocco Meli Date: Mon, 15 Apr 2024 22:33:19 +0200 Subject: [PATCH 5/5] tw --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b1c90f..fba541b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,8 +19,8 @@ Contributors: @RMeli ### Changed -* `pre-commit` versions [PR #120 | @RMeli] -* Versions of several GitHub Actions [PR #120 | @RMeli] +* `pre-commit` versions [PR #120 | @RMeli] +* Versions of several GitHub Actions [PR #120 | @RMeli] * Location of backend tests to standalone file [PR #118 | @RMeli] ### Removed