Skip to content

Commit

Permalink
Merge pull request #452 from c-martinez/dev
Browse files Browse the repository at this point in the history
Preparing for release 1.3.9
  • Loading branch information
c-martinez authored Feb 18, 2024
2 parents cbaa937 + 4e97539 commit b0582b1
Show file tree
Hide file tree
Showing 5 changed files with 63 additions and 5 deletions.
55 changes: 55 additions & 0 deletions .dockerignore
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/
6 changes: 4 additions & 2 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[flake8]
per-file-ignores = src/__init__.py:F401

per-file-ignores =
src/__init__.py:F401
src/prov.py:E203
tests/test_grlc.py:F401
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,4 @@ TODOs.md
TwitterAPIKeys.md
config.ini
ink_ext_XXXXXX_img0.png
build/
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ authors:
given-names: Carlos
orcid: "https://orcid.org/0000-0001-5565-7577"
cff-version: "1.0.3"
date-released: 2023-07-30
date-released: 2024-02-17
doi: 10.5281/zenodo.1064391
license: MIT
message: "If you use this software, please cite it as below."
Expand All @@ -29,4 +29,4 @@ keywords:
- "linked-data"
- "semantic-web"
- "linked-data-api"
version: "1.3.8"
version: "1.3.9"
2 changes: 1 addition & 1 deletion src/prov.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def init_prov_graph(self):
"PROV-O",
]
).decode("utf-8")
repo_prov = repo_prov[repo_prov.find("@"):]
repo_prov = repo_prov[repo_prov.find("@") :]
# glogger.debug('Git2PROV output: {}'.format(repo_prov))
glogger.debug("Ingesting Git2PROV output into RDF graph")
with open("temp.prov.ttl", "w") as temp_prov:
Expand Down

0 comments on commit b0582b1

Please sign in to comment.