forked from linkml/linkml-model
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also updated Pipfile and requirements.txt to remove a whole lot of unneeded dependencies
- Loading branch information
Showing
6 changed files
with
11 additions
and
18 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 |
---|---|---|
|
@@ -7,5 +7,7 @@ name = "pypi" | |
linkml-runtime = "~=1.0, >=1.0.10" | ||
|
||
[dev-packages] | ||
linkml = "~=1.0, >=1.0.1" | ||
mkdocs = "*" | ||
|
||
[pipenv] |
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,5 @@ | ||
#!/bin/bash | ||
# checkout (update) all of the outputs to revert to what is on github | ||
. ./targets.sh | ||
git checkout $TGTS | ||
|
||
git checkout docs | ||
ls linkml_model | grep -v model | xargs git checkout |
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
#!/bin/bash | ||
# Make all of the test output changes visible to git | ||
. ./targets.sh | ||
git ls-files -z $TGTS | tr '\n' ' ' | xargs git update-index --no-assume-unchanged | ||
git ls-files -z docs linkml_model | tr '\n' ' ' | xargs git update-index --no-assume-unchanged | ||
|
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,3 +1,3 @@ | ||
#!/bin/bash | ||
# Generate a variable that establishes all of the target directories | ||
export TGTS="docs graphql json jsonld jsonschema owl linkml_model rdf shex" | ||
export TGTS="docs graphql json jsonld jsonschema owl rdf shex" |