Codebase list awscli / c7eaba0
New upstream version 1.19.1 Noah Meyerhans 3 years ago
7 changed file(s) with 13 addition(s) and 8 deletion(s). Raw diff Collapse all Expand all
00 Metadata-Version: 1.2
11 Name: awscli
2 Version: 1.19.0
2 Version: 1.19.1
33 Summary: Universal Command Line Environment for AWS.
44 Home-page: http://aws.amazon.com/cli/
55 Author: Amazon Web Services
1616 """
1717 import os
1818
19 __version__ = '1.19.0'
19 __version__ = '1.19.1'
2020
2121 #
2222 # Get our data path to be added to botocore's search path
189189 raise KubeconfigInaccessableError(
190190 "Can't create directory for writing: {0}".format(e))
191191 try:
192 with open(config.path, "w+") as stream:
192 with os.fdopen(
193 os.open(
194 config.path,
195 os.O_CREAT | os.O_RDWR,
196 0o600),
197 "w+") as stream:
193198 ordered_yaml_dump(config.content, stream)
194 except IOError as e:
199 except (IOError, OSError) as e:
195200 raise KubeconfigInaccessableError(
196201 "Can't open kubeconfig for writing: {0}".format(e))
197202
00 Metadata-Version: 1.2
11 Name: awscli
2 Version: 1.19.0
2 Version: 1.19.1
33 Summary: Universal Command Line Environment for AWS.
44 Home-page: http://aws.amazon.com/cli/
55 Author: Amazon Web Services
0 botocore==1.20.0
0 botocore==1.20.1
11 docutils<0.16,>=0.10
22 s3transfer<0.4.0,>=0.3.0
33 PyYAML<5.4,>=3.10
22
33 [metadata]
44 requires-dist =
5 botocore==1.20.0
5 botocore==1.20.1
66 docutils>=0.10,<0.16
77 s3transfer>=0.3.0,<0.4.0
88 PyYAML>=3.10,<5.4
2323
2424
2525 install_requires = [
26 'botocore==1.20.0',
26 'botocore==1.20.1',
2727 'docutils>=0.10,<0.16',
2828 's3transfer>=0.3.0,<0.4.0',
2929 'PyYAML>=3.10,<5.4',