Skip to content

Commit efafac8

Browse files
Backport PR #1487: add upper pin to jsonschema
1 parent 867c563 commit efafac8

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,12 @@ jobs:
8888
include:
8989
- package_name: asdf-standard
9090
repository: asdf-format/asdf-standard
91-
ref: master
91+
ref: main
9292
install_command: pip install -e .[test]
9393
test_command: pytest
9494
- package_name: asdf-transform-schemas
9595
repository: asdf-format/asdf-transform-schemas
96-
ref: master
96+
ref: main
9797
install_command: pip install -e .[test]
9898
test_command: pytest
9999
- package_name: asdf-unit-schemas

.github/workflows/downstream.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,12 @@ jobs:
8484
test_command: pytest
8585
- package_name: asdf-standard
8686
repository: asdf-format/asdf-standard
87-
ref: master
87+
ref: main
8888
install_command: pip install -e .[test]
8989
test_command: pytest
9090
- package_name: asdf-transform-schemas
9191
repository: asdf-format/asdf-transform-schemas
92-
ref: master
92+
ref: main
9393
install_command: pip install -e .[test]
9494
test_command: pytest
9595
- package_name: asdf-wcs-schemas

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ repos:
4949
exclude: "asdf/extern/.*"
5050

5151
- repo: https://github.com/pycqa/isort
52-
rev: 5.11.1
52+
rev: 5.12.0
5353
hooks:
5454
- id: isort
5555

CHANGES.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2.14.4 (2022-03-17)
2+
-------------------
3+
4+
The ASDF Standard is at v1.6.0
5+
6+
- require jsonschema<4.18 [#1487]
7+
18
2.14.3 (2022-12-15)
29
-------------------
310

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies = [
2222
'importlib_resources >=3; python_version <"3.9"',
2323
'importlib-metadata >=4.11.4',
2424
'jmespath >=0.6.2',
25-
'jsonschema >=4.0.1',
25+
'jsonschema<4.18,>=4.0.1',
2626
'numpy >=1.18',
2727
'packaging >=16.0',
2828
'pyyaml >=3.10',

0 commit comments

Comments
 (0)