external-systems 0.103.0rc2__tar.gz → 0.103.0rc3__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: external-systems
3
- Version: 0.103.0rc2
3
+ Version: 0.103.0rc3
4
4
  Summary: A Python library for interacting with Foundry Sources
5
5
  License: Apache-2.0
6
6
  Keywords: Palantir,Foundry,Sources,Compute Modules,Python Functions,Transforms
@@ -16,4 +16,4 @@
16
16
  # The version is set during the publishing step (since we can't know the version in advance)
17
17
  # using the autorelease bot
18
18
 
19
- __version__ = "0.103.0-rc2"
19
+ __version__ = "0.103.0-rc3"
@@ -113,17 +113,11 @@ class Source:
113
113
  except PermissionError:
114
114
  log.warning("PermissionError when writing to provided CA bundle path, falling back to temporary file.")
115
115
 
116
- # Second try reading the provided CA bundle path and appending all content to the new CA bundle
116
+ # Finally, try reading the provided CA bundle path and appending all content to the new CA bundle
117
117
  new_ca_contents = []
118
- try:
119
- with open(provided_ca_bundle_path) as provided_ca_bundle_file:
120
- new_ca_contents.append(provided_ca_bundle_file.read())
121
- except PermissionError:
122
- log.warning(
123
- "PermissionError when reading from provided CA bundle path, falling back to temporary file with only the Source defined certificates."
124
- )
118
+ with open(provided_ca_bundle_path) as provided_ca_bundle_file:
119
+ new_ca_contents.append(provided_ca_bundle_file.read())
125
120
 
126
- # Finally, if no permissions to read or write to the provided CA bundle path, create a temporary file with only the Source defined certificates
127
121
  for required_ca in self._source_parameters.server_certificates.values():
128
122
  new_ca_contents.append(required_ca)
129
123
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "external-systems"
3
- version = "0.103.0-rc2"
3
+ version = "0.103.0-rc3"
4
4
  description = "A Python library for interacting with Foundry Sources"
5
5
  authors = ["Palantir Technologies, Inc."]
6
6
  license = "Apache-2.0"