Skip to content

Commit

Permalink
Disable SSL check, update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
MarekSuchanek committed Sep 19, 2024
1 parent af56c23 commit c2e1e23
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 20 deletions.
3 changes: 2 additions & 1 deletion nanopub_submitter/nanopub.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ def _publish_nanopub(nanopub_bundle: str, ctx: NanopubProcessingContext) -> list
'Content-Type': f'application/trig; charset={DEFAULT_ENCODING}',
'User-Agent': f'{PACKAGE_NAME}/{PACKAGE_VERSION}',
},
timeout=10,
timeout=20,
verify=False,
)
if not r.ok:
ok = False
Expand Down
38 changes: 19 additions & 19 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
annotated-types==0.6.0
anyio==4.2.0
certifi==2023.11.17
annotated-types==0.7.0
anyio==4.4.0
certifi==2024.8.30
charset-normalizer==3.3.2
click==8.1.7
fastapi==0.109.0
fastapi==0.115.0
h11==0.14.0
httptools==0.6.1
idna==3.6
idna==3.10
isodate==0.6.1
pydantic==2.5.3
pydantic_core==2.14.6
pyparsing==3.1.1
python-dotenv==1.0.0
PyYAML==6.0.1
pydantic==2.9.2
pydantic_core==2.23.4
pyparsing==3.1.4
python-dotenv==1.0.1
PyYAML==6.0.2
rdflib==7.0.0
requests==2.31.0
requests==2.32.3
six==1.16.0
sniffio==1.3.0
sniffio==1.3.1
SPARQLWrapper==2.0.0
starlette==0.35.1
typing_extensions==4.9.0
urllib3==2.1.0
uvicorn==0.26.0
uvloop==0.19.0
watchfiles==0.21.0
websockets==12.0
starlette==0.38.5
typing_extensions==4.12.2
urllib3==2.2.3
uvicorn==0.30.6
uvloop==0.20.0
watchfiles==0.24.0
websockets==13.0.1

0 comments on commit c2e1e23

Please sign in to comment.