-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add the jsonschema dependency in pyproject.toml file as well * Bump version: 3.0.0-beta.12 → 3.0.0-beta.13
- Loading branch information
1 parent
e14a3de
commit f058c7e
Showing
8 changed files
with
12 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "usfm-grammar" | ||
version = "3.0.0-beta.12" | ||
version = "3.0.0-beta.13" | ||
description = "Python parser for USFM files, based on tree-sitter-usfm3" | ||
readme = "README.md" | ||
authors = [{ name = "BCS Team", email = "[email protected]" }] | ||
|
@@ -23,8 +23,9 @@ classifiers = [ | |
keywords = ["usfm", "parser", "grammar", "tree-sitter"] | ||
dependencies = [ | ||
'tree-sitter==0.22.3; python_version >= "3.9"', | ||
'tree-sitter-usfm3==3.0.0-beta.12; python_version >="3.8"', | ||
'lxml==5.2.2; python_version >= "3.5"' | ||
'tree-sitter-usfm3==3.0.0-beta.13; python_version >="3.8"', | ||
'lxml==5.2.2; python_version >= "3.5"', | ||
'jsonschema=4.23.0; python_version>= "3.8"' | ||
] | ||
requires-python = ">=3.10" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
tree-sitter==0.22.3 | ||
tree-sitter-usfm3==3.0.0-beta.12 | ||
tree-sitter-usfm3==3.0.0-beta.13 | ||
lxml==5.2.2 | ||
jsonschema==4.23.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,4 @@ | |
|
||
Validator = validator.Validator | ||
|
||
__version__ = "3.0.0-beta.12" | ||
__version__ = "3.0.0-beta.13" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters