Skip to content

Commit 0a7d863

Browse files
committed
Don't test Python 3.14; output hermes.log
1 parent 0283b26 commit 0a7d863

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/hermes-run.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ["3.11", "3.14"]
14+
python-version: ["3.11", "3.13"]
1515
steps:
1616
- uses: actions/checkout@v5
1717
- uses: actions/setup-python@v5
@@ -21,7 +21,7 @@ jobs:
2121
run: python -c "import sys; print(sys.version)"
2222
- name: Install package
2323
run: pip install -e .
24-
- run: hermes clean
25-
- run: hermes harvest
26-
- run: hermes process
27-
- run: hermes curate
24+
- run: hermes clean || (cat hermes.log && false)
25+
- run: hermes harvest || (cat hermes.log && false)
26+
- run: hermes process || (cat hermes.log && false)
27+
- run: hermes curate || (cat hermes.log && false)

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ classifiers = [
2525
"Programming Language :: Python :: 3.11",
2626
"Programming Language :: Python :: 3.12",
2727
"Programming Language :: Python :: 3.13",
28-
"Programming Language :: Python :: 3.14",
2928
]
3029
requires-python = ">=3.11"
3130
dependencies = [

0 commit comments

Comments
 (0)