Skip to content

Commit 4744188

Browse files
authored
Remove deprecated usage of ConfigParser (#91)
* replace SafeConfigParser with ConfigParser * bump version
1 parent 507b7fd commit 4744188

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cirro/api/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class UserConfig(NamedTuple):
2424

2525
def save_user_config(user_config: UserConfig):
2626
original_user_config = load_user_config()
27-
ini_config = configparser.SafeConfigParser()
27+
ini_config = configparser.ConfigParser()
2828
ini_config['General'] = {
2929
'auth_method': user_config.auth_method,
3030
'base_url': Constants.default_base_url,

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "cirro"
3-
version = "0.8.3"
3+
version = "0.8.4"
44
description = "CLI tool and SDK for interacting with the Cirro platform"
55
authors = ["Cirro Bio <support@cirro.bio>"]
66
license = "MIT"

0 commit comments

Comments
 (0)