Skip to content

Commit 14a4ecd

Browse files
authored
drop support for python 3.7 (#189)
1 parent abe3467 commit 14a4ecd

File tree

3 files changed

+9
-72
lines changed

3 files changed

+9
-72
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [Ubuntu, macOS, Windows]
20-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
20+
python-version: ["3.8", "3.9", "3.10", "3.11"]
2121
include:
2222
- os: Ubuntu
2323
image: ubuntu-latest

poetry.lock

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

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ include = [
1717
]
1818

1919
[tool.poetry.dependencies]
20-
python = "^3.7"
20+
python = "^3.8"
2121
poetry = "^1.5.0"
2222
poetry-core = "^1.6.0"
2323

@@ -45,7 +45,7 @@ fix = true
4545
unfixable = [
4646
"ERA", # do not autoremove commented out code
4747
]
48-
target-version = "py37"
48+
target-version = "py38"
4949
line-length = 88
5050
extend-select = [
5151
"B", # flake8-bugbear
@@ -79,7 +79,7 @@ required-imports = ["from __future__ import annotations"]
7979

8080

8181
[tool.black]
82-
target-version = ['py37']
82+
target-version = ['py38']
8383
preview = true
8484

8585
[tool.mypy]
@@ -94,9 +94,9 @@ strict = true
9494
files = ["src", "tests"]
9595
exclude = ["^tests/fixtures/"]
9696

97-
# use of importlib-metadata backport at python3.7 makes it impossible to
98-
# satisfy mypy without some ignores: but we get a different set of ignores at
99-
# different python versions.
97+
# use of importlib-metadata backport makes it impossible to satisfy mypy
98+
# without some ignores: but we get a different set of ignores at different
99+
# python versions.
100100
#
101101
# <https://github.com/python/mypy/issues/8823>, meanwhile suppress that
102102
# warning.

0 commit comments

Comments
 (0)