Skip to content

Commit ac4ce0b

Browse files
authored
A few diverse fixes. (#538)
1 parent 0a4de31 commit ac4ce0b

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
pull_request:
77
branches: [ "main" ]
88
schedule:
9-
- cron: "57 5 * * 3"
9+
- cron: "57 5 * * 3" # M H d m w (Every Wednesday at 5:57 AM)
1010

1111
jobs:
1212
analyze:

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
python: [3.8, "3.10"]
31+
python: [3.8, "3.10", 3.12]
3232
steps:
3333
- uses: actions/checkout@v4
3434
- uses: actions/setup-python@v5
@@ -39,7 +39,7 @@ jobs:
3939
- run: tox -e py-all-extras
4040

4141
unittest-omegaconf:
42-
runs-on: ubuntu-20.04
42+
runs-on: ubuntu-latest
4343
steps:
4444
- uses: actions/checkout@v4
4545
- uses: actions/setup-python@v5
@@ -50,7 +50,7 @@ jobs:
5050
- run: tox -e omegaconf
5151

5252
doctest:
53-
runs-on: ubuntu-20.04
53+
runs-on: ubuntu-latest
5454
steps:
5555
- uses: actions/checkout@v4
5656
- uses: actions/setup-python@v5

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ dev = [
105105
"jsonargparse[test]",
106106
"jsonargparse[coverage]",
107107
"jsonargparse[doc]",
108-
"jsonargparse[mypy]",
109108
"pre-commit>=2.19.0",
110109
"tox>=3.25.0",
111110
"build>=0.10.0",

0 commit comments

Comments
 (0)