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

fix: update dsp-tools to work with API version 16.0.0 #117

Merged
merged 7 commits into from Nov 18, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -120,12 +120,12 @@ The documentation is a collection of [markdown](https://en.wikipedia.org/wiki/Ma
After updates of the files, build and check the result with the following commands:

```bash
make build-docs
make serve-docs
make docs-build
make docs-serve
```

To update the changes to the official documentation pages run:

```bash
make publish-docs
make docs-publish
```
6 changes: 3 additions & 3 deletions docs/dsp-tools-information-for-developers.md
Expand Up @@ -114,12 +114,12 @@ The documentation is a collection of [markdown](https://en.wikipedia.org/wiki/Ma
After updates of the files, build and check the result with the following commands:

```bash
make build-docs
make serve-docs
make docs-build
make docs-serve
```

To update the changes to the official documentation pages run:

```bash
make publish-docs
make docs-publish
```
10 changes: 7 additions & 3 deletions knora/dsplib/models/BUILD.bazel
Expand Up @@ -54,12 +54,13 @@ py_library(
visibility = ["//visibility:public"],
srcs = ["listnode.py"],
deps = [
"//knora/dsplib/utils:set_encoder",
":connection",
":helpers",
":langstring",
":project",
],
imports = ["."],
imports = [".", ".."],
)

py_library(
Expand Down Expand Up @@ -101,6 +102,7 @@ py_library(
visibility = ["//visibility:public"],
srcs = ["project.py"],
deps = [
"//knora/dsplib/utils:set_encoder",
":helpers",
":langstring",
":connection",
Expand All @@ -114,12 +116,13 @@ py_library(
visibility = ["//visibility:public"],
srcs = ["propertyclass.py"],
deps = [
"//knora/dsplib/utils:set_encoder",
":connection",
":helpers",
":langstring",
":listnode"
],
imports = ["."],
imports = [".", ".."],
)

py_library(
Expand All @@ -146,11 +149,12 @@ py_library(
visibility = ["//visibility:public"],
srcs = ["resourceclass.py"],
deps = [
"//knora/dsplib/utils:set_encoder",
":connection",
":helpers",
":langstring",
],
imports = ["."],
imports = [".", ".."],
)

py_library(
Expand Down