Skip to content

Commit

Permalink
Adding Python 3.6 support for test & CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
madpah committed Sep 3, 2021
1 parent a446f4c commit daa12ba
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
version: 2.1

executors:
python36:
docker:
- image: circleci/python:3.6
python37:
docker:
- image: circleci/python:3.7
Expand Down Expand Up @@ -87,6 +90,8 @@ workflows:
version: 2
build_and_test_and_publish:
jobs:
- build:
executor: python36
- build:
executor: python37
- build:
Expand All @@ -102,6 +107,8 @@ workflows:
branches:
only: main
jobs:
- build:
executor: python36
- build:
executor: python37
- build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/poetry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- "3.9" # highest supported
- "3.8"
- "3.7"
# - "3.6" # lowest supported
- "3.6" # lowest supported
timeout-minutes: 30
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion=3.9.0
envlist = flake8,py3.9,py3.8,py3.7
envlist = flake8,py3.9,py3.8,py3.7,py3.6

[testenv]
deps =
Expand Down

0 comments on commit daa12ba

Please sign in to comment.