File tree Expand file tree Collapse file tree 3 files changed +28
-2
lines changed Expand file tree Collapse file tree 3 files changed +28
-2
lines changed Original file line number Diff line number Diff line change
1
+ // For format details, see https://aka.ms/devcontainer.json. For config options, see the
2
+ // README at: https://github.com/devcontainers/templates/tree/main/src/python
3
+ {
4
+ "name" : " Python 3" ,
5
+ // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6
+ "image" : " mcr.microsoft.com/devcontainers/python:1-3.12-bullseye" ,
7
+
8
+ // Features to add to the dev container. More info: https://containers.dev/features.
9
+ // "features": {},
10
+
11
+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
12
+ // "forwardPorts": [],
13
+
14
+ // Use 'postCreateCommand' to run commands after the container is created.
15
+ "postCreateCommand" : " pip install -e ." ,
16
+
17
+ // Configure tool-specific properties.
18
+ "customizations" : {
19
+ "vscode" : {
20
+ "extensions" : [" ms-python.python" ]
21
+ }
22
+ }
23
+
24
+ // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
25
+ // "remoteUser": "root"
26
+ }
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ def get_config(config_path=None, prog='nest'):
22
22
23
23
# Note, this cannot accept sections titled 'DEFAULT'
24
24
if os .path .exists (config_file ):
25
- config = configparser .SafeConfigParser ()
25
+ config = configparser .ConfigParser ()
26
26
config .read ([config_file ])
27
27
if config .has_section ('nest' ):
28
28
defaults .update (dict (config .items ('nest' )))
Original file line number Diff line number Diff line change 10
10
# Bumping Minor means API bugfix or new functionality.
11
11
# Bumping Micro means CLI change of any kind unless it is
12
12
# significant enough to warrant a minor/major bump.
13
- version = '5.1.1 '
13
+ version = '5.2.0 '
14
14
15
15
16
16
setup (name = 'python-google-nest' ,
You can’t perform that action at this time.
0 commit comments