-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #453 from CLARIAH/dev
Preparing for release 1.3.9
- Loading branch information
Showing
39 changed files
with
2,288 additions
and
1,444 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# SPDX-FileCopyrightText: 2022 Albert Meroño, Rinke Hoekstra, Carlos Martínez | ||
# | ||
# SPDX-License-Identifier: MIT | ||
|
||
*~ | ||
\#*\# | ||
bin/ | ||
!bin/grlc-server | ||
build/ | ||
config.ini | ||
db-cache.json | ||
db.json | ||
DispatchSparqlQuery.ipynb | ||
docker-compose.yml | ||
Dockerfile2 | ||
*/.DS_Store | ||
.eggs/ | ||
FileLoaders.ipynb | ||
Get_Parameters.ipynb | ||
GetYamlDecorators.ipynb | ||
.git/ | ||
.*!.gitignore | ||
grlc.egg-info/ | ||
.idea | ||
include/ | ||
ink_ext_XXXXXX_img0.png | ||
.ipynb_checkpoints/ | ||
lib/ | ||
local/ | ||
*.log | ||
node_modules | ||
pip-selfcheck.json | ||
Process_sparql_query_text.ipynb | ||
*.pyc | ||
.pytest_cache | ||
.Python | ||
ReleaseProcedure.md | ||
response_1700168662326.html | ||
Rewrite_Query.ipynb | ||
share/ | ||
src/config.ini | ||
src/FileLoaderTesting.ipynb | ||
ssl-certificates/ | ||
!static/swagger-ui/dist/lib | ||
*.swp | ||
testQueries/ | ||
TODOs.md | ||
TwitterAPIKeys.md | ||
venv3.10/ | ||
venv3.11/ | ||
venv3.8/ | ||
venv3.9/ | ||
venv-dev/ | ||
venv-tests.sh | ||
.vscode/ |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[flake8] | ||
per-file-ignores = | ||
src/__init__.py:F401 | ||
src/prov.py:E203 | ||
tests/test_grlc.py:F401 |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Lint | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'src/*.py' | ||
- 'tests/*.py' | ||
jobs: | ||
linter: | ||
runs-on: ubuntu-latest | ||
name: Lint | ||
steps: | ||
- name: Check out source repository | ||
uses: actions/checkout@v3 | ||
- name: Set up Python environment | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.11" | ||
- name: flake8 Lint | ||
uses: py-actions/flake8@v2 | ||
with: | ||
max-line-length: "127" | ||
path: "src" |
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
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 |
---|---|---|
|
@@ -39,3 +39,4 @@ TODOs.md | |
TwitterAPIKeys.md | ||
config.ini | ||
ink_ext_XXXXXX_img0.png | ||
build/ |
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
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 |
---|---|---|
|
@@ -2,15 +2,17 @@ | |
# | ||
# SPDX-License-Identifier: MIT | ||
|
||
FROM python:3.8.16 | ||
FROM python:3.11-slim | ||
MAINTAINER [email protected] | ||
|
||
# Default values for env variables | ||
ARG GRLC_GITHUB_ACCESS_TOKEN= | ||
ARG GRLC_GITLAB_ACCESS_TOKEN= | ||
ARG GRLC_SERVER_NAME=grlc.io | ||
ARG GRLC_SPARQL_ENDPOINT=http://dbpedia.org/sparql | ||
|
||
ENV GRLC_GITHUB_ACCESS_TOKEN=$GRLC_GITHUB_ACCESS_TOKEN \ | ||
GRLC_GITLAB_ACCESS_TOKEN=$GRLC_GITLAB_ACCESS_TOKEN \ | ||
GRLC_SERVER_NAME=$GRLC_SERVER_NAME \ | ||
GRLC_SPARQL_ENDPOINT=$GRLC_SPARQL_ENDPOINT | ||
|
||
|
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
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
Oops, something went wrong.