Skip to content

Commit daa12ba

Browse files
committed
Adding Python 3.6 support for test & CI.
1 parent a446f4c commit daa12ba

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.circleci/config.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
version: 2.1
1616

1717
executors:
18+
python36:
19+
docker:
20+
- image: circleci/python:3.6
1821
python37:
1922
docker:
2023
- image: circleci/python:3.7
@@ -87,6 +90,8 @@ workflows:
8790
version: 2
8891
build_and_test_and_publish:
8992
jobs:
93+
- build:
94+
executor: python36
9095
- build:
9196
executor: python37
9297
- build:
@@ -102,6 +107,8 @@ workflows:
102107
branches:
103108
only: main
104109
jobs:
110+
- build:
111+
executor: python36
105112
- build:
106113
executor: python37
107114
- build:

.github/workflows/poetry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- "3.9" # highest supported
5656
- "3.8"
5757
- "3.7"
58-
# - "3.6" # lowest supported
58+
- "3.6" # lowest supported
5959
timeout-minutes: 30
6060
steps:
6161
- name: Checkout

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion=3.9.0
3-
envlist = flake8,py3.9,py3.8,py3.7
3+
envlist = flake8,py3.9,py3.8,py3.7,py3.6
44

55
[testenv]
66
deps =

0 commit comments

Comments
 (0)