Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleysommer committed Sep 13, 2021
2 parents b92da76 + ed3330b commit 0647de2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
13 changes: 6 additions & 7 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "pyshacl"
version = "0.16.2"
version = "0.16.2.post1"
# Don't forget to change the version number in __init__.py and CITATION.cff along with this one
description = "Python SHACL Validator"
license = "Apache-2.0"
Expand Down Expand Up @@ -55,8 +55,8 @@ include = [
[tool.poetry.dependencies]
python = "^3.6.2" # Compatible python versions must be declared here
rdflib = ">=6.0.0,<7"
owlrl = "^5.2.1"
rdflib-jsonld = ">=0.4.0,<0.6"
owlrl = "^5.2.3"
rdflib-jsonld = { version=">=0.4.0,<0.6", optional=true}
pyduktape2 = {version="^0.4.1", python=">=3.6", optional=true}
flake8 = {version="^3.8.0", python=">=3.6", optional=true}
isort = {version="^5.7.0", python=">=3.6", optional=true}
Expand Down
2 changes: 1 addition & 1 deletion pyshacl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


# version compliant with https://www.python.org/dev/peps/pep-0440/
__version__ = '0.16.2'
__version__ = '0.16.2.post1'
# Don't forget to change the version number in pyproject.toml and CITATION.cff along with this one

__all__ = ['validate', 'Validator', '__version__', 'Shape', 'ShapesGraph']

0 comments on commit 0647de2

Please sign in to comment.