Skip to content

Commit 039e00d

Browse files
committed
update
1 parent e704d9b commit 039e00d

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/test-formats.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919

2020
steps:
2121
- uses: actions/checkout@v4
22-
- name: Set up Python 3.10
22+
- name: Set up Python 3.11
2323
uses: actions/setup-python@v5
2424
with:
25-
python-version: "3.10"
25+
python-version: "3.11"
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip
@@ -43,10 +43,10 @@ jobs:
4343

4444
steps:
4545
- uses: actions/checkout@v4
46-
- name: Set up Python 3.10
46+
- name: Set up Python 3.11
4747
uses: actions/setup-python@v5
4848
with:
49-
python-version: "3.10"
49+
python-version: "3.11"
5050
- name: Install dependencies
5151
run: |
5252
python -m pip install --upgrade pip

.github/workflows/tests.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@v4
17-
- name: Set up Python 3.10
17+
- name: Set up Python 3.11
1818
uses: actions/setup-python@v5
1919
with:
20-
python-version: "3.10"
20+
python-version: "3.11"
2121
- uses: pre-commit/action@v3.0.1
2222

2323
tests:
@@ -56,7 +56,7 @@ jobs:
5656
pytest --cov=myst_parser --cov-report=xml --cov-report=term-missing
5757
coverage xml
5858
- name: Upload to Codecov
59-
if: github.repository == 'executablebooks/MyST-Parser' && matrix.python-version == 3.10 && matrix.os == 'ubuntu-latest'
59+
if: github.repository == 'executablebooks/MyST-Parser' && matrix.python-version == 3.11 && matrix.os == 'ubuntu-latest'
6060
uses: codecov/codecov-action@v4
6161
with:
6262
token: ${{ secrets.CODECOV_TOKEN }}
@@ -78,10 +78,10 @@ jobs:
7878
steps:
7979
- name: Checkout source
8080
uses: actions/checkout@v4
81-
- name: Set up Python 3.10
81+
- name: Set up Python 3.11
8282
uses: actions/setup-python@v5
8383
with:
84-
python-version: "3.10"
84+
python-version: "3.11"
8585
- name: Install setup
8686
run: |
8787
python -m pip install --upgrade pip
@@ -133,10 +133,10 @@ jobs:
133133
steps:
134134
- name: Checkout source
135135
uses: actions/checkout@v4
136-
- name: Set up Python 3.10
136+
- name: Set up Python 3.11
137137
uses: actions/setup-python@v5
138138
with:
139-
python-version: "3.10"
139+
python-version: "3.11"
140140
- name: install flit
141141
run: |
142142
pip install flit~=3.4
@@ -156,10 +156,10 @@ jobs:
156156
steps:
157157
- name: Checkout source
158158
uses: actions/checkout@v4
159-
- name: Set up Python 3.10
159+
- name: Set up Python 3.11
160160
uses: actions/setup-python@v5
161161
with:
162-
python-version: "3.10"
162+
python-version: "3.11"
163163
- name: install flit and tomlkit
164164
run: |
165165
pip install flit~=3.4 tomlkit

0 commit comments

Comments
 (0)