From 0e3a785355de8010ef50dbdab3b2d5d43346a50a Mon Sep 17 00:00:00 2001 From: Eva Lott Date: Tue, 1 Oct 2024 10:17:01 +0100 Subject: [PATCH] updated jsonschema --- .github/actions/install_requirements/action.yml | 2 +- .github/workflows/code.yml | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/install_requirements/action.yml b/.github/actions/install_requirements/action.yml index 51f2dfa3..cd5e50f5 100644 --- a/.github/actions/install_requirements/action.yml +++ b/.github/actions/install_requirements/action.yml @@ -12,7 +12,7 @@ inputs: default: "3.x" jsonschema_version: description: version of the jsonschema pip package to install - default: 3 + default: 4 runs: using: composite diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml index 77bd5822..19fb1feb 100644 --- a/.github/workflows/code.yml +++ b/.github/workflows/code.yml @@ -40,7 +40,7 @@ jobs: - os: "ubuntu-latest" python: "3.8" install: ".[dev]" - jsonschema: 3 + jsonschema: 4 runs-on: ${{ matrix.os }} env: diff --git a/pyproject.toml b/pyproject.toml index 7f02c4d8..23b9fc59 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ classifiers = [ description = "Data model used by the bluesky ecosystem" dependencies = [ "importlib-resources", - "jsonschema>=3", + "jsonschema>=4", "numpy", "typing_extensions" ]