Skip to content

Commit ce6b2c7

Browse files
committed
Update jsonschema with fixed version
1 parent 79af4f1 commit ce6b2c7

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/upload-to-triplestore.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
upload:
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/setup-python@v5
26+
- uses: actions/setup-python@v6
2727
with:
2828
python-version: '3.12'
2929
- run: pip install ogc-na
@@ -75,8 +75,9 @@ jobs:
7575
]
7676
7777
auth_details = None
78-
if 'SPARQL_USERNAME' in os.environ:
78+
if os.environ.get('SPARQL_USERNAME', ''):
7979
auth_details = (os.environ["SPARQL_USERNAME"], os.environ.get("SPARQL_PASSWORD", ""))
80+
print(f'Using authentication')
8081
8182
for bblock in bblocks:
8283
ontology = bblock.get('ontology')

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
asciidoc
22
pyyaml~=6.0
33
Mako~=1.2.4
4-
jsonschema==4.17.3
4+
jsonschema @ git+https://github.com/ogcincubator/jsonschema@bblocks-postprocess#egg=ogc-na
55
ogc-na @ git+https://github.com/opengeospatial/ogc-na-tools@main#egg=ogc-na
66
requests~=2.32.0,>=2.32.0
77
pyparsing~=3.0.9

0 commit comments

Comments
 (0)