external-systems 0.102.0__tar.gz → 0.103.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of external-systems might be problematic. Click here for more details.
- {external_systems-0.102.0 → external_systems-0.103.0}/PKG-INFO +1 -1
- {external_systems-0.102.0 → external_systems-0.103.0}/external_systems/_version.py +1 -1
- {external_systems-0.102.0 → external_systems-0.103.0}/external_systems/sources/_proxies.py +2 -1
- {external_systems-0.102.0 → external_systems-0.103.0}/pyproject.toml +1 -1
- {external_systems-0.102.0 → external_systems-0.103.0}/LICENSE.txt +0 -0
- {external_systems-0.102.0 → external_systems-0.103.0}/README.md +0 -0
- {external_systems-0.102.0 → external_systems-0.103.0}/external_systems/__init__.py +0 -0
- {external_systems-0.102.0 → external_systems-0.103.0}/external_systems/py.typed +0 -0
- {external_systems-0.102.0 → external_systems-0.103.0}/external_systems/sources/__init__.py +0 -0
- {external_systems-0.102.0 → external_systems-0.103.0}/external_systems/sources/_api.py +0 -0
- {external_systems-0.102.0 → external_systems-0.103.0}/external_systems/sources/_connections.py +0 -0
- {external_systems-0.102.0 → external_systems-0.103.0}/external_systems/sources/_refreshable.py +0 -0
- {external_systems-0.102.0 → external_systems-0.103.0}/external_systems/sources/_sockets.py +0 -0
- {external_systems-0.102.0 → external_systems-0.103.0}/external_systems/sources/_sources.py +0 -0
- {external_systems-0.102.0 → external_systems-0.103.0}/external_systems/sources/_utils.py +0 -0
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
|
|
15
|
+
import os
|
|
15
16
|
from functools import cache
|
|
16
17
|
from typing import Any, Mapping, Optional, Union
|
|
17
18
|
|
|
@@ -28,7 +29,7 @@ class CustomCaBundleSession(Session):
|
|
|
28
29
|
"""
|
|
29
30
|
|
|
30
31
|
def merge_environment_settings(self, url, proxies, stream, verify, *args, **kwargs): # type: ignore[no-untyped-def]
|
|
31
|
-
if isinstance(self.verify, str):
|
|
32
|
+
if isinstance(self.verify, str) and os.path.exists(self.verify):
|
|
32
33
|
verify = self.verify
|
|
33
34
|
|
|
34
35
|
return super(CustomCaBundleSession, self).merge_environment_settings(
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{external_systems-0.102.0 → external_systems-0.103.0}/external_systems/sources/_connections.py
RENAMED
|
File without changes
|
{external_systems-0.102.0 → external_systems-0.103.0}/external_systems/sources/_refreshable.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|