From f03b860ce49b47b8736031ab287e4f9bd0706675 Mon Sep 17 00:00:00 2001 From: Anthony Romaniello <aromaniello@ntia.gov> Date: Thu, 30 Nov 2023 14:45:07 -0700 Subject: [PATCH 1/5] Update minimum ray to 2.6.3 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 32f2b868..d99187ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ dependencies = [ "numpy>=1.22.0", "psutil>=5.9.4", "python-dateutil>=2.0", - "ray>=2.4.0", + "ray>=2.6.3", "ruamel.yaml>=0.15", "scipy>=1.8.0", "sigmf @ git+https://github.com/NTIA/SigMF@multi-recording-archive", From c5e1369634b9c57c92f9f09347ba58fb7c78c5a3 Mon Sep 17 00:00:00 2001 From: Anthony Romaniello <aromaniello@ntia.gov> Date: Thu, 30 Nov 2023 14:45:36 -0700 Subject: [PATCH 2/5] Bump patch number --- scos_actions/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scos_actions/__init__.py b/scos_actions/__init__.py index 9c4b2035..7ecb3fd2 100644 --- a/scos_actions/__init__.py +++ b/scos_actions/__init__.py @@ -1 +1 @@ -__version__ = "6.4.2" +__version__ = "6.4.3" From f8f87b0262c74709f8b8913f73d7aaffda46f30f Mon Sep 17 00:00:00 2001 From: Anthony Romaniello <aromaniello@ntia.gov> Date: Thu, 30 Nov 2023 14:48:10 -0700 Subject: [PATCH 3/5] update pre-comit hooks --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 27a4ee27..c1e0c8ce 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -30,7 +30,7 @@ repos: types: [file, python] args: ["--profile", "black", "--filter-files", "--gitignore"] - repo: https://github.com/psf/black - rev: 23.10.1 + rev: 23.11.0 hooks: - id: black types: [file, python] From 1b05ce1c3bf2ffdc4c06aebe945a55a3884cbfb9 Mon Sep 17 00:00:00 2001 From: Anthony Romaniello <aromaniello@ntia.gov> Date: Thu, 28 Dec 2023 16:36:10 -0500 Subject: [PATCH 4/5] Cap Ray at 2.8.0 after testing --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d99187ae..524dc45b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ dependencies = [ "numpy>=1.22.0", "psutil>=5.9.4", "python-dateutil>=2.0", - "ray>=2.6.3", + "ray>=2.6.3,<2.8.0", "ruamel.yaml>=0.15", "scipy>=1.8.0", "sigmf @ git+https://github.com/NTIA/SigMF@multi-recording-archive", From 12f755cc6797a1bd941189c7c0d7cf1b014e50d0 Mon Sep 17 00:00:00 2001 From: Anthony Romaniello <aromaniello@ntia.gov> Date: Thu, 28 Dec 2023 16:38:38 -0500 Subject: [PATCH 5/5] Update all pre-commit hooks --- .pre-commit-config.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c1e0c8ce..9618961d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -23,19 +23,19 @@ repos: - id: pyupgrade args: ["--py38-plus"] - repo: https://github.com/pycqa/isort - rev: 5.12.0 + rev: 5.13.2 hooks: - id: isort name: isort (python) types: [file, python] args: ["--profile", "black", "--filter-files", "--gitignore"] - repo: https://github.com/psf/black - rev: 23.11.0 + rev: 23.12.1 hooks: - id: black types: [file, python] - repo: https://github.com/igorshubovych/markdownlint-cli - rev: v0.37.0 + rev: v0.38.0 hooks: - id: markdownlint types: [file, markdown]