Skip to content

Commit

Permalink
Release version 0.0.0.dev299
Browse files Browse the repository at this point in the history
  • Loading branch information
AAriam committed Sep 27, 2024
1 parent 6590910 commit 4b9729d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 20 deletions.
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespaces = true
# ----------------------------------------- Project Metadata -------------------------------------
#
[project]
version = "0.0.0.dev298"
version = "0.0.0.dev299"
name = "ControlMan"
dependencies = [
"packaging >= 23.2, < 24",
Expand All @@ -26,16 +26,16 @@ dependencies = [
"referencing == 0.35.1",
"jsonpath-ng == 1.6.1",
"ruamel.yaml == 0.17.40",
"PyLinks == 0.0.0.dev27",
"LoggerMan == 0.0.0.dev42",
"PySerials == 0.0.0.dev17",
"GitTidy == 0.0.0.dev35",
"PyLinks == 0.0.0.dev28",
"LoggerMan == 0.0.0.dev43",
"PySerials == 0.0.0.dev18",
"GitTidy == 0.0.0.dev36",
"PkgData == 0.0.0.dev4",
"PyShellMan == 0.0.0.dev3",
"PyShellMan == 0.0.0.dev4",
"PySyntax == 0.0.0.dev3",
"ExceptionMan == 0.0.0.dev14",
"MDit == 0.0.0.dev14",
"JSONSchemata == 0.0.0.dev13",
"ExceptionMan == 0.0.0.dev15",
"MDit == 0.0.0.dev15",
"JSONSchemata == 0.0.0.dev14",
"VersionMan == 0.0.0.dev248",
"HTMP == 0.0.0.dev5",
]
Expand Down
16 changes: 8 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ jsonschema >= 4.23, < 5
referencing == 0.35.1
jsonpath-ng == 1.6.1
ruamel.yaml == 0.17.40
PyLinks == 0.0.0.dev27
LoggerMan == 0.0.0.dev42
PySerials == 0.0.0.dev17
GitTidy == 0.0.0.dev35
PyLinks == 0.0.0.dev28
LoggerMan == 0.0.0.dev43
PySerials == 0.0.0.dev18
GitTidy == 0.0.0.dev36
PkgData == 0.0.0.dev4
PyShellMan == 0.0.0.dev3
PyShellMan == 0.0.0.dev4
PySyntax == 0.0.0.dev3
ExceptionMan == 0.0.0.dev14
MDit == 0.0.0.dev14
JSONSchemata == 0.0.0.dev13
ExceptionMan == 0.0.0.dev15
MDit == 0.0.0.dev15
JSONSchemata == 0.0.0.dev14
VersionMan == 0.0.0.dev248
HTMP == 0.0.0.dev5
3 changes: 2 additions & 1 deletion src/controlman/data_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

import pyserials as _ps
import pylinks as _pl
from pylinks.exception.api import WebAPIError as _WebAPIError

from controlman.exception import load as _exception
from controlman.cache_manager import CacheManager as _CacheManager
Expand Down Expand Up @@ -74,7 +75,7 @@ def load_external_data(loader: _yaml.SafeConstructor, node: _yaml.ScalarNode):
verb="GET",
response_type="str",
)
except _pl.exceptions.WebAPIError as e:
except _WebAPIError as e:
raise _exception.ControlManUnreachableTagInConfigFileError(
filepath=filepath,
data=file_content,
Expand Down
4 changes: 2 additions & 2 deletions src/controlman/file_gen/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from loggerman import logger
import pyserials as _ps
import pylinks
from pylinks.exceptions import WebAPIError
from pylinks.exception.api import WebAPIError as _WebAPIError

from controlman.datatype import DynamicFile, DynamicFileType
from controlman.file_gen import unit as _unit
Expand Down Expand Up @@ -474,6 +474,6 @@ def validate_codecov_config(self, config: str) -> None:
url="https://codecov.io/validate",
data=config.encode(),
)
except WebAPIError as e:
except _WebAPIError as e:
logger.error("Validation of Codecov configuration file failed.", str(e))
return

0 comments on commit 4b9729d

Please sign in to comment.