Skip to content

Commit

Permalink
Merge pull request #236 from cwacek/fix-235
Browse files Browse the repository at this point in the history
bugfix: Fix #235 by pinning jsonschema below 4.1.8
  • Loading branch information
cwacek committed Aug 3, 2023
2 parents 51a29d2 + 18257c0 commit daae835
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
install_requires=[
"inflection>=0.2",
"Markdown>=2.4",
"jsonschema>=2.3",
"jsonschema>=2.3,<4.1.8",
"six>=1.5.2",
],
cmdclass=versioneer.get_cmdclass(),
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

[tox]
envlist = py{36,37,38}-jsonschema{23,24,25,26,30}-markdown{2,3}
envlist = py{36,37,38}-jsonschema{23,24,25,26,30,40}-markdown{2,3}
skip_missing_interpreters = true

[gh-actions]
Expand All @@ -23,5 +23,6 @@ deps =
jsonschema25: jsonschema~=2.5.0
jsonschema26: jsonschema~=2.6.0
jsonschema30: jsonschema~=3.0.0
jsonschema40: jsonschema~=4.0
markdown2: Markdown~= 2.4
markdown3: Markdown~= 3.0

0 comments on commit daae835

Please sign in to comment.