Skip to content

Commit 050b1c7

Browse files
authored
Merge pull request #92 from macbre/ci-python-36-37
Try to test using Python 3.6 and 3.7 too
2 parents 854ca59 + 00c0afb commit 050b1c7

File tree

3 files changed

+75
-19
lines changed

3 files changed

+75
-19
lines changed

.github/workflows/python-ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
strategy:
1616
matrix:
1717
python-version:
18+
- "3.6"
19+
- "3.7"
1820
- "3.8"
1921
- "3.9"
2022

@@ -41,8 +43,8 @@ jobs:
4143
uses: actions/cache@v2
4244
with:
4345
path: .venv
44-
key: venv-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
45-
restore-keys: venv-${{ matrix.python-version }}-
46+
key: v2-venv-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
47+
restore-keys: v2-venv-${{ matrix.python-version }}-
4648

4749
- name: Install dependencies with poetry
4850
run: |

poetry.lock

Lines changed: 70 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ packages = [
1313
]
1414

1515
[tool.poetry.dependencies]
16-
python = "^3.8"
16+
python = "^3.6"
1717
sqlparse = "^0.4.1"
1818

1919
[tool.poetry.dev-dependencies]

0 commit comments

Comments
 (0)