Skip to content

Commit 903431c

Browse files
authored
Merge pull request #72 from TankerHQ/tim/python_multi_ver
feat: Allow any Python >= 3.9, instead of exactly 3.12
2 parents 5a980a8 + 2dd4099 commit 903431c

6 files changed

Lines changed: 201 additions & 132 deletions

File tree

.github/workflows/install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ['3.12']
12+
python-version: ['3.12', '3.11', '3.10', '3.9']
1313
steps:
1414
- name: Set up Python ${{ matrix.python-version }}
1515
uses: actions/setup-python@v4

.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.12']
9+
python-version: ['3.12', '3.11', '3.10', '3.9']
1010
steps:
1111
- uses: actions/checkout@v3
1212

.github/workflows/safety.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ['3.12']
12+
python-version: ['3.12', '3.11', '3.10', '3.9']
1313
steps:
1414
- uses: actions/checkout@v3
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.12']
10+
python-version: ['3.12', '3.11', '3.10', '3.9']
1111
steps:
1212
- uses: actions/checkout@v3
1313

0 commit comments

Comments
 (0)