Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pyshacl v0.17.3 #38

Merged
merged 7 commits into from
Dec 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .azure-pipelines/azure-pipelines-linux.yml

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

5 changes: 1 addition & 4 deletions .ci_support/linux_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,4 @@ channel_sources:
channel_targets:
- conda-forge main
docker_image:
- quay.io/condaforge/linux-anvil-comp7
zip_keys:
- - cdt_name
- docker_image
- quay.io/condaforge/linux-anvil-cos7-x86_64
1 change: 1 addition & 0 deletions .gitattributes

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

10 changes: 6 additions & 4 deletions .scripts/build_steps.sh

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

3 changes: 2 additions & 1 deletion README.md

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

4 changes: 4 additions & 0 deletions build-locally.py

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

23 changes: 11 additions & 12 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,33 +1,30 @@
{% set name = "pyshacl" %}
{% set version = "0.17.2" %}
{% set version = "0.17.3" %}

package:
name: {{ name }}
name: pyshacl
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 46f31c7a7f7298aa5b483d92dbc850ff79a144d26f1f41e83267ed84b4d6ae23
url: https://pypi.io/packages/source/p/pyshacl/pyshacl-{{ version }}.tar.gz
sha256: a76c444f9156fd24e915455a173dc45d080b153702705359c031b47f8cb964b7

build:
noarch: python
number: 0
script:
# TODO: remove when pip vs poetry situation is resolved
- {{ PYTHON }} -c "__import__('os').unlink('pyproject.toml')"
- {{ PYTHON }} -m pip install . --no-deps -vv
entry_points:
- pyshacl = pyshacl.cli:main

requirements:
host:
- pip
- poetry-core >=1.0.3
- python >=3.7
- poetry-core >=1.0.7
- python >=3.7,<3.10
run:
- python >=3.7,<3.10
- owlrl >=5.2.3,<7
- prettytable >=2.2.1,<3
- python >=3.7
- prettytable >=2.2.1,<3.0.0
- rdflib >=6.0.0,<7
run_constrained:
- rdflib-jsonld >=0.4.0,<0.6
Expand All @@ -45,7 +42,9 @@ test:
commands:
- python -m pip check
- pyshacl --help
- pytest -vv --cov=pyshacl --cov-report term-missing:skip-covered -k "not (owl_imports or js)"
# uses pyduktape2, see above
- python -c "__import__('pathlib').Path('test/issues/test_108.py').unlink()"
- pytest -vv --cov=pyshacl --cov-report term-missing:skip-covered --no-cov-on-fail -k "not (owl_imports or js)" --cov-fail-under 67

about:
home: https://github.com/RDFLib/pySHACL
Expand Down