From f8600b8ef3b32854a03fa7ee933b534604728f54 Mon Sep 17 00:00:00 2001 From: Zewen Kelvin Tuong Date: Tue, 15 Oct 2024 10:12:12 +1000 Subject: [PATCH 1/4] Update code_style.yml --- .github/workflows/code_style.yml | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/workflows/code_style.yml b/.github/workflows/code_style.yml index f8bdf6e..e489161 100644 --- a/.github/workflows/code_style.yml +++ b/.github/workflows/code_style.yml @@ -14,11 +14,11 @@ jobs: - name: Setup Python uses: actions/setup-python@v4 - - name: Install black - run: python -m pip install black - - - name: Run black - run: black --config pyproject.toml --check . + - name: Black + uses: psf/black@stable + with: + options: "--config pyproject.toml --check" + src: "." docstring: name: Check docstring compliance. @@ -31,8 +31,5 @@ jobs: - name: Setup Python uses: actions/setup-python@v4 - - name: Install interrogate - run: python -m pip install interrogate - - - name: Run interrogate - run: interrogate . + - name: Interrogate + uses: JackMcKew/python-interrogate-check@main From 82a68c88757eefaa12f94935f22a14ea66272c9e Mon Sep 17 00:00:00 2001 From: Zewen Kelvin Tuong Date: Mon, 18 Nov 2024 20:59:04 +1000 Subject: [PATCH 2/4] Update code_style.yml --- .github/workflows/code_style.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code_style.yml b/.github/workflows/code_style.yml index e489161..492e3d9 100644 --- a/.github/workflows/code_style.yml +++ b/.github/workflows/code_style.yml @@ -31,5 +31,8 @@ jobs: - name: Setup Python uses: actions/setup-python@v4 - - name: Interrogate - uses: JackMcKew/python-interrogate-check@main + - name: Install interrogate + run: python -m pip install interrogate + + - name: Run interrogate + run: interrogate . From c74a7f08aebe73d83cefc7d031b598e9f397dd5f Mon Sep 17 00:00:00 2001 From: Zewen Kelvin Tuong Date: Mon, 18 Nov 2024 21:00:16 +1000 Subject: [PATCH 3/4] Update test_build.yml --- .github/workflows/test_build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test_build.yml b/.github/workflows/test_build.yml index be3c425..024ba72 100644 --- a/.github/workflows/test_build.yml +++ b/.github/workflows/test_build.yml @@ -48,10 +48,12 @@ jobs: - { python-version: 3.9, os: ubuntu-latest } - { python-version: "3.10", os: ubuntu-latest } - { python-version: "3.11", os: ubuntu-latest } + - { python-version: "3.12", os: ubuntu-latest } - { python-version: 3.8, os: macos-latest } - { python-version: 3.9, os: macos-latest } - { python-version: "3.10", os: macos-latest } - { python-version: "3.11", os: macos-latest } + - { python-version: "3.12", os: macos-latest } runs-on: ${{ matrix.config.os }} env: TZ: UTC From 10301069bb90a07c83b341acae06ccf817ca2b19 Mon Sep 17 00:00:00 2001 From: Zewen Kelvin Tuong Date: Mon, 18 Nov 2024 21:08:34 +1000 Subject: [PATCH 4/4] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 62c35c1..c8944cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ classifiers = [ packages = [{ include = "tools" }] [tool.poetry.dependencies] -python = ">=3.8,<3.12" +python = ">=3.8" pandas = "*" numpy = "*" matplotlib = ">=3.5.2,<=3.9.1"