Skip to content

Commit

Permalink
chore: Drop python 3.7 (reached EOL) from test matrix (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
drish authored Dec 16, 2024
1 parent 64ef7fb commit ef13199
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[flake8]
exclude =
__pycache__
.tox
build
.pytest_cache
.mypy_cache
.vscode
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ deps =
pep8-naming

commands =
flake8 --max-line-length=130 resend/
flake8 --max-line-length=130 ./resend/

[testenv:mypy]
deps =
Expand Down

0 comments on commit ef13199

Please sign in to comment.