From 1bc21f8036d088ec313af5c0062daa7b9f351b66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Gince?= <50332514+JeremieGince@users.noreply.github.com> Date: Fri, 20 Jun 2025 12:11:06 -0400 Subject: [PATCH 1/3] Clean up PR template formatting Removed extra blank lines from the pull request template checklist for improved readability and consistency. --- .github/pull_request_template.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index c400f91..75ed203 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -12,14 +12,10 @@ Please complete the following checklist when submitting a PR. The PR will not be Make sure that the tests passed and the coverage is sufficient by running `python run_pytests.py --tests_folder=tests` or `pytest tests --cov=src --cov-report=term-missing`. - - [ ] All new functions and code are clearly documented. - - [ ] The code is formatted using Black. You can do this by running `black src tests`. -- - [ ] The imports are sorted using isort. You can do this by running `isort src tests`. - - [ ] The code is type-checked using Mypy. You can do this by running `mypy src tests`. From 2984a57f80310292f7b8716a5d202e35d5399b96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Gince?= <50332514+JeremieGince@users.noreply.github.com> Date: Sun, 22 Jun 2025 21:59:32 -0400 Subject: [PATCH 2/3] Add isort configuration with black profile Configured isort to use the 'black' profile for import sorting to ensure consistency with Black's formatting style. --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index ff96af6..a5dab4a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -101,3 +101,6 @@ ignore_missing_imports = true [tool.black] line-length = 120 + +[tool.isort] +profile = "black" From a5790642645a8cbd43c8209715a8254a47c4e074 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Gince?= <50332514+JeremieGince@users.noreply.github.com> Date: Fri, 27 Jun 2025 02:07:09 -0400 Subject: [PATCH 3/3] Update build_dist.yml --- .github/workflows/build_dist.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build_dist.yml b/.github/workflows/build_dist.yml index ecd718a..553b3c0 100644 --- a/.github/workflows/build_dist.yml +++ b/.github/workflows/build_dist.yml @@ -12,6 +12,7 @@ permissions: statuses: write issues: write discussions: write + id-token: write jobs: Build-Dist: