Skip to content

Commit cd29e75

Browse files
authored
Reduce testing and minor fixes (#898)
1 parent ee2189d commit cd29e75

3 files changed

Lines changed: 4 additions & 9 deletions

File tree

.github/workflows/tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
runs-on: ubuntu-latest
5959
strategy:
6060
matrix:
61-
python: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
61+
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
6262
steps:
6363
- uses: actions/checkout@v6
6464
- uses: actions/setup-python@v6
@@ -73,7 +73,7 @@ jobs:
7373
strategy:
7474
fail-fast: false
7575
matrix:
76-
python: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
76+
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
7777
steps:
7878
- uses: actions/checkout@v6
7979
- uses: actions/setup-python@v6
@@ -88,7 +88,7 @@ jobs:
8888
strategy:
8989
fail-fast: false
9090
matrix:
91-
python: ["3.10", "3.12", "3.14"]
91+
python: ["3.12", "3.14"]
9292
steps:
9393
- uses: actions/checkout@v6
9494
- uses: actions/setup-python@v6

jsonargparse/_common.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -487,10 +487,6 @@ def debug_mode_active() -> bool:
487487
return get_env_var_bool("JSONARGPARSE_DEBUG")
488488

489489

490-
if debug_mode_active():
491-
os.environ["LOGGER_LEVEL"] = "DEBUG" # pragma: no cover
492-
493-
494490
# base classes
495491

496492

jsonargparse/_core.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1633,8 +1633,7 @@ def env_prefix(self, env_prefix: Union[bool, str]):
16331633

16341634
@property
16351635
def parser_mode(self) -> str:
1636-
"""Mode for parsing configuration files: ``yaml``, ``json``, ``jsonnet`` or ones added via
1637-
:func:`.set_loader`.
1636+
"""Mode for parsing config files, ``yaml``, ``json``, ``jsonnet`` or ones added via :func:`.set_loader`.
16381637
16391638
:getter: Returns the current parser mode.
16401639
:setter: Sets the parser mode.

0 commit comments

Comments
 (0)