Skip to content

Commit f85c016

Browse files
committed
Update Python used in publish.yml to 3.9
1 parent bee73ec commit f85c016

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-20.04
1414
steps:
1515
- uses: actions/checkout@v2
16-
- name: Set up Python 3.8
16+
- name: Set up Python 3.9
1717
uses: actions/setup-python@v1
1818
with:
19-
python-version: 3.8
19+
python-version: 3.9
2020
- name: Install setuptools and wheel
2121
run: |
2222
python -m pip install --user setuptools wheel
@@ -40,10 +40,10 @@ jobs:
4040
runs-on: ubuntu-20.04
4141
steps:
4242
- uses: actions/checkout@v2
43-
- name: Set up Python 3.8
43+
- name: Set up Python 3.9
4444
uses: actions/setup-python@v1
4545
with:
46-
python-version: 3.8
46+
python-version: 3.9
4747
- name: Set up Julia
4848
uses: julia-actions/setup-julia@v1
4949
with:
@@ -59,10 +59,10 @@ jobs:
5959
matrix: # using `matrix` to define a constant
6060
package: ['julia==0.5.7.dev']
6161
steps:
62-
- name: Set up Python 3.8
62+
- name: Set up Python 3.9
6363
uses: actions/setup-python@v1
6464
with:
65-
python-version: 3.8
65+
python-version: 3.9
6666
- name: Download from TestPyPI
6767
run: |
6868
pip download --dest dist --no-deps --index-url https://test.pypi.org/simple/ ${{ matrix.package }}

0 commit comments

Comments
 (0)