Skip to content

Commit

Permalink
dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JungleCatSW committed Nov 17, 2023
1 parent 9b68dfc commit b88ec0e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions helpers/auth_config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import yaml
import ruamel.yaml
import os

home = os.path.expanduser("~")
Expand All @@ -10,7 +10,7 @@ def load_config(path, context_name):
error = None

with open(path, 'r') as file:
config_data = yaml.safe_load(file)
config_data = ruamel.yaml.safe_load(file)

if config_data['configVersion'] != "v0":
error = Exception("Only config version v0 is supported")
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "cudo-compute"
version = "0.0.8"
version = "0.0.9"
authors = [
{ name = "Cudo Ventures", email = "[email protected]" },
]
Expand All @@ -22,7 +22,7 @@ dependencies = [
"urllib3 >= 1.15.1",
"certifi >= 14.05.14",
"python_dateutil >= 2.5.3",
"pyyaml>=3.11",
"ruamel.yaml>=0.17.2",
]

[project.urls]
Expand Down

0 comments on commit b88ec0e

Please sign in to comment.