@@ -20,18 +20,19 @@ jobs:
2020
2121 steps :
2222 - uses : actions/checkout@v4
23- - name : Set up Python 3.8
23+ - name : Set up Python 3.9
2424 uses : actions/setup-python@v5
2525 with :
26- python-version : ' 3.8 '
26+ python-version : ' 3.9 '
2727 - uses : pre-commit/action@v3.0.0
2828
2929 tests :
3030
3131 runs-on : ubuntu-latest
3232 strategy :
33+ fail-fast : false
3334 matrix :
34- python-version : ['pypy-3.8 ', '3.8 ', '3.9 ', '3.10 ', '3.11 ', '3.12 ']
35+ python-version : ['pypy-3.9 ', '3.9 ', '3.10 ', '3.11 ', '3.12 ', '3.13 ']
3536
3637 steps :
3738 - uses : actions/checkout@v4
4849 run : |
4950 pytest tests/ --cov=markdown_it --cov-report=xml --cov-report=term-missing
5051 - name : Upload to Codecov
51- if : matrix.python-version == '3.8 ' && github.repository == 'executablebooks/markdown-it-py'
52+ if : matrix.python-version == '3.9 ' && github.repository == 'executablebooks/markdown-it-py'
5253 uses : codecov/codecov-action@v3
5354 with :
5455 name : markdown-it-py-pytests
6263 runs-on : ubuntu-latest
6364 strategy :
6465 matrix :
65- python-version : ['3.8 ']
66+ python-version : ['3.9 ']
6667 steps :
6768 - uses : actions/checkout@v4
6869 - name : Set up Python ${{ matrix.python-version }}
@@ -86,18 +87,18 @@ jobs:
8687 steps :
8788 - uses : actions/checkout@v4
8889
89- - name : Set up Python 3.8
90+ - name : Set up Python 3.9
9091 uses : actions/setup-python@v5
9192 with :
92- python-version : ' 3.8 '
93+ python-version : ' 3.9 '
9394
9495 - name : Install tox
9596 run : |
9697 python -m pip install --upgrade pip
9798 pip install tox
9899
99100 - name : Run benchmark
100- run : tox -e py38 -bench-core -- --benchmark-json bench-core.json
101+ run : tox -e py39 -bench-core -- --benchmark-json bench-core.json
101102
102103 - name : Upload data
103104 uses : actions/upload-artifact@v3
@@ -115,10 +116,10 @@ jobs:
115116 steps :
116117 - name : Checkout source
117118 uses : actions/checkout@v4
118- - name : Set up Python 3.8
119+ - name : Set up Python 3.9
119120 uses : actions/setup-python@v5
120121 with :
121- python-version : ' 3.8 '
122+ python-version : ' 3.9 '
122123 - name : install flit
123124 run : |
124125 pip install flit~=3.4
0 commit comments