From 8c96e6be37b6fa49cd6777ada899860bc299201b Mon Sep 17 00:00:00 2001 From: Richard Evans Date: Fri, 12 Apr 2024 15:23:29 -0600 Subject: [PATCH] Black formatted files --- CHANGELOG.md | 5 +++-- ogcore/SS.py | 2 +- ogcore/TPI.py | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 65e568a87..e0491b507 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,8 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- Limits `docs_check.yml` GitHub Action to pull request commits, no more on push at merge. -- Adds Codecov secret token and if statement to `build_and_test.yml`. +- Adds a list of file change event triggers to `build_and_test.yml` so that those tests only run when one of those files is changed. +- Updates the codecov GH Action to version 4 and adds a secret token. +- Adds a list of file change event triggers to `deploy_docs.yml` and `docs_check.yml`, and limits `docs_check.yml` to only run on pull requests. ## [0.11.4] - 2024-04-03 22:00:00 diff --git a/ogcore/SS.py b/ogcore/SS.py index 61da4a400..da1cd9643 100644 --- a/ogcore/SS.py +++ b/ogcore/SS.py @@ -255,7 +255,7 @@ def inner_loop(outer_loop_vars, p, client): results = results = compute( *lazy_values, scheduler=dask.multiprocessing.get, - num_workers=p.num_workers + num_workers=p.num_workers, ) for j, result in enumerate(results): diff --git a/ogcore/TPI.py b/ogcore/TPI.py index 811459b8f..af05b3fbf 100644 --- a/ogcore/TPI.py +++ b/ogcore/TPI.py @@ -743,7 +743,7 @@ def run_TPI(p, client=None): results = results = compute( *lazy_values, scheduler=dask.multiprocessing.get, - num_workers=p.num_workers + num_workers=p.num_workers, ) for j, result in enumerate(results):