Skip to content

Commit

Permalink
Bring back Python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
kigawas committed Mar 30, 2021
1 parent c75ea6c commit 8500d63
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9"]
python-version: ["3.6", "3.7", "3.8", "3.9"]
postgres-version: ["9.6", "12.1"]
services:
postgres:
Expand Down
81 changes: 62 additions & 19 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,13 @@ classifiers = [
python = "^3.6"
gino = { version = "^1.0.0rc2", allow-prereleases = true }
sanic = "^20.0.0"
uvloop = [
{ version = "==0.14", python = "==3.6" },
{ version = "^0.15", python = ">3.6" }
]

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

# tests
pytest = "^5.3.2"
Expand Down

0 comments on commit 8500d63

Please sign in to comment.