Skip to content

Commit 2946242

Browse files
Merge pull request #198 from pact-foundation/chore/deprecate_python35
chore: update python versions
2 parents 3885c60 + 0111698 commit 2946242

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/build_and_test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: [3.4, 3.5, 3.6, 3.7, 3.8]
11+
python-version: [3.6, 3.7, 3.8, 3.9]
1212

1313
steps:
1414
- uses: actions/checkout@v2
@@ -27,3 +27,6 @@ jobs:
2727
- name: Test with nosetests
2828
run: |
2929
tox -e test
30+
- name: Test examples
31+
run: |
32+
make e2e

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=py{34,35,36,37,38}-{test,install}
2+
envlist=py{36,37,38,39}-{test,install}
33
[testenv]
44
deps=
55
test: -rrequirements_dev.txt

0 commit comments

Comments
 (0)