Skip to content

Commit

Permalink
feat: dropped python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasvinclav committed Aug 27, 2023
1 parent 6466304 commit f0ee91c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ keywords = [
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -35,7 +34,7 @@ pytest-django = "^4.5.2"
tox = "^4.5.2"

[tool.black]
target-version = ["py37", "py38", "py39", "py310", "py311"]
target-version = ["py38", "py39", "py310", "py311"]

[tool.ruff]
fix = true
Expand Down Expand Up @@ -63,7 +62,7 @@ addopts = """\
django_find_project = false

[tool.poetry.dependencies]
python = ">=3.7"
python = ">=3.8"
django = ">=3.2"
importlib-metadata = "6.7.0"

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
isolated_build = true
envlist =
python{37,38,39,310,311}-django{32,41,42}
python{38,39,310,311}-django{32,41,42}

[testenv]
skip_install = true
Expand Down

0 comments on commit f0ee91c

Please sign in to comment.