Skip to content

Commit 8500d63

Browse files
committed
Bring back Python 3.6
1 parent c75ea6c commit 8500d63

File tree

3 files changed

+68
-21
lines changed

3 files changed

+68
-21
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.7", "3.8", "3.9"]
18+
python-version: ["3.6", "3.7", "3.8", "3.9"]
1919
postgres-version: ["9.6", "12.1"]
2020
services:
2121
postgres:

poetry.lock

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

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,13 @@ classifiers = [
2525
python = "^3.6"
2626
gino = { version = "^1.0.0rc2", allow-prereleases = true }
2727
sanic = "^20.0.0"
28+
uvloop = [
29+
{ version = "==0.14", python = "==3.6" },
30+
{ version = "^0.15", python = ">3.6" }
31+
]
2832

2933
[tool.poetry.dev-dependencies]
30-
black = { version = "^19.10b0", python = ">=3.6" }
34+
black = "^20.8b0"
3135

3236
# tests
3337
pytest = "^5.3.2"

0 commit comments

Comments
 (0)