Skip to content

Commit 28fecd2

Browse files
committed
fix(ci): use string version numbers
Because python 3.10 is not python 3.1
1 parent 65f7bba commit 28fecd2

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Python
1313
uses: actions/setup-python@v1
1414
with:
15-
python-version: 3.8
15+
python-version: '3.8'
1616
- name: Install and configure poetry
1717
run: python -m pip install poetry
1818
- name: Install python packages

.github/workflows/install.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
name: install
22
on:
33
schedule:
4-
- cron: '0 1 * * *'
4+
- cron: '0 1 * * *'
55

66
jobs:
77
install:
88
runs-on: ubuntu-latest
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: [3.7, 3.8, 3.9, 3.10]
12+
python-version: ['3.7', '3.8', '3.9', '3.10']
1313
steps:
1414
- name: Set up Python ${{ matrix.python-version }}
1515
uses: actions/setup-python@v1

.github/workflows/linters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
python-version: [3.7]
9+
python-version: ['3.7']
1010
steps:
1111
- uses: actions/checkout@v1
1212

.github/workflows/safety.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
name: safety
22
on:
33
schedule:
4-
- cron: '0 1 * * *'
4+
- cron: '0 1 * * *'
55

66
jobs:
77
safety:
88
runs-on: ubuntu-latest
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: [3.7]
12+
python-version: ['3.7']
1313
steps:
1414
- uses: actions/checkout@v1
1515

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
python-version: ["3.7", "3.8", "3.9", "3.10"]
10+
python-version: ['3.7', '3.8', '3.9', '3.10']
1111
steps:
1212
- uses: actions/checkout@v1
1313

0 commit comments

Comments
 (0)