Skip to content

Commit 9776ed4

Browse files
committed
update publish workflow
1 parent 2140a2d commit 9776ed4

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
python-version: ['3.8', '3.9', '3.10'] # add 3.10 here and down and write in your notes the issue
13+
python-version: ['3.8', '3.9', '3.10']
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Set up Python ${{ matrix.python-version }}
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip
23-
python -m pip install --ignore-installed sphinx==3.4.1 tox==3.20.0 sphinx_rtd_theme==0.5.2 "Jinja2<3.1" virtualenv
23+
python -m pip install --ignore-installed sphinx==3.4.1 tox==3.20.0 sphinx_rtd_theme==0.5.2 "Jinja2<3.1" virtualenv==20.0.1
2424
- name: Test with tox
2525
run: |
2626
tox -e py

.github/workflows/publish.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ on:
66
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
77
jobs:
88
build:
9-
runs-on: Ubuntu-18.04
9+
runs-on: Ubuntu-20.04
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
python-version: [3.6.8]
13+
python-version: [3.10]
1414

1515
steps:
1616
- uses: actions/checkout@v2
@@ -21,10 +21,7 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
python -m pip install sphinx==5.3.0
25-
pip install tox
26-
pip install sphinx_rtd_theme==1.1.1
27-
pip install virtualenv==20.0.1
24+
python -m pip install --ignore-installed sphinx==3.4.1 tox==3.20.0 sphinx_rtd_theme==0.5.2 "Jinja2<3.1" virtualenv==20.0.1
2825
- name: Test with tox
2926
run: |
3027
tox -e py

0 commit comments

Comments
 (0)