Skip to content

Commit

Permalink
Removed SSL_VERIFY=False environment variable setting for requests
Browse files Browse the repository at this point in the history
  • Loading branch information
muddymudskipper committed Dec 17, 2024
1 parent 85267f9 commit 287167d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Update execution report
- Reduce memory usage when parsing graphs from CMEM by creating temporary file
- Validate parameters at initialisation
- Removed SSL_VERIFY=False environment variable setting for requests

## [5.1.0] 2024-12-03

Expand Down
6 changes: 0 additions & 6 deletions cmem_plugin_pyshacl/plugin_pyshacl.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@

from collections import OrderedDict
from datetime import UTC, datetime
from os import environ
from tempfile import NamedTemporaryFile
from time import time
from warnings import simplefilter

import validators.url
from cmem.cmempy.dp.proxy.graph import get_streamed, post_streamed
Expand Down Expand Up @@ -45,10 +43,6 @@
URIRef,
)
from rdflib.term import Node
from urllib3.exceptions import InsecureRequestWarning

environ["SSL_VERIFY"] = "false"
simplefilter("ignore", category=InsecureRequestWarning)

SKOSXL = Namespace("http://www.w3.org/2008/05/skos-xl#")
SH_PROPERTIES = [
Expand Down

0 comments on commit 287167d

Please sign in to comment.