Skip to content

Commit

Permalink
Min Python to 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Tinche authored Sep 1, 2022
1 parent a93206b commit 885df35
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"
env:
USING_COVERAGE: "3.6,3.7,3.8,3.9,3.10"
USING_COVERAGE: "3.7,3.8,3.9,3.10"

strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11.0-rc.1", "pypy-3.7"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11.0-rc.1", "pypy-3.7"]

steps:
- uses: "actions/checkout@v2"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ readme = "README.rst"
repository = "https://github.com/Tinche/aiofiles"

[tool.poetry.dependencies]
python = "^3.6"
python = "^3.7"

[tool.poetry.dev-dependencies]
pytest = "^6.2.2"
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
Expand All @@ -9,7 +8,7 @@ python =
pypy-3.7: pypy3

[tox]
envlist = py36, py37, py38, py39, py310, py311, pypy3
envlist = py37, py38, py39, py310, py311, pypy3
isolated_build = True

[testenv:lint]
Expand Down

0 comments on commit 885df35

Please sign in to comment.