Skip to content

Commit b0582b1

Browse files
authored
Merge pull request #452 from c-martinez/dev
Preparing for release 1.3.9
2 parents cbaa937 + 4e97539 commit b0582b1

File tree

5 files changed

+63
-5
lines changed

5 files changed

+63
-5
lines changed

.dockerignore

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# SPDX-FileCopyrightText: 2022 Albert Meroño, Rinke Hoekstra, Carlos Martínez
2+
#
3+
# SPDX-License-Identifier: MIT
4+
5+
*~
6+
\#*\#
7+
bin/
8+
!bin/grlc-server
9+
build/
10+
config.ini
11+
db-cache.json
12+
db.json
13+
DispatchSparqlQuery.ipynb
14+
docker-compose.yml
15+
Dockerfile2
16+
*/.DS_Store
17+
.eggs/
18+
FileLoaders.ipynb
19+
Get_Parameters.ipynb
20+
GetYamlDecorators.ipynb
21+
.git/
22+
.*!.gitignore
23+
grlc.egg-info/
24+
.idea
25+
include/
26+
ink_ext_XXXXXX_img0.png
27+
.ipynb_checkpoints/
28+
lib/
29+
local/
30+
*.log
31+
node_modules
32+
pip-selfcheck.json
33+
Process_sparql_query_text.ipynb
34+
*.pyc
35+
.pytest_cache
36+
.Python
37+
ReleaseProcedure.md
38+
response_1700168662326.html
39+
Rewrite_Query.ipynb
40+
share/
41+
src/config.ini
42+
src/FileLoaderTesting.ipynb
43+
ssl-certificates/
44+
!static/swagger-ui/dist/lib
45+
*.swp
46+
testQueries/
47+
TODOs.md
48+
TwitterAPIKeys.md
49+
venv3.10/
50+
venv3.11/
51+
venv3.8/
52+
venv3.9/
53+
venv-dev/
54+
venv-tests.sh
55+
.vscode/

.flake8

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
[flake8]
2-
per-file-ignores = src/__init__.py:F401
3-
2+
per-file-ignores =
3+
src/__init__.py:F401
4+
src/prov.py:E203
5+
tests/test_grlc.py:F401

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,4 @@ TODOs.md
3939
TwitterAPIKeys.md
4040
config.ini
4141
ink_ext_XXXXXX_img0.png
42+
build/

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ authors:
1616
given-names: Carlos
1717
orcid: "https://orcid.org/0000-0001-5565-7577"
1818
cff-version: "1.0.3"
19-
date-released: 2023-07-30
19+
date-released: 2024-02-17
2020
doi: 10.5281/zenodo.1064391
2121
license: MIT
2222
message: "If you use this software, please cite it as below."
@@ -29,4 +29,4 @@ keywords:
2929
- "linked-data"
3030
- "semantic-web"
3131
- "linked-data-api"
32-
version: "1.3.8"
32+
version: "1.3.9"

src/prov.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def init_prov_graph(self):
5656
"PROV-O",
5757
]
5858
).decode("utf-8")
59-
repo_prov = repo_prov[repo_prov.find("@"):]
59+
repo_prov = repo_prov[repo_prov.find("@") :]
6060
# glogger.debug('Git2PROV output: {}'.format(repo_prov))
6161
glogger.debug("Ingesting Git2PROV output into RDF graph")
6262
with open("temp.prov.ttl", "w") as temp_prov:

0 commit comments

Comments
 (0)