Skip to content

Commit

Permalink
Dropped Python 3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
agronholm committed Feb 5, 2024
1 parent 94b50e4 commit cc3cb93
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions docs/versionhistory.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ Version history

This library adheres to `Semantic Versioning <http://semver.org/>`_.

**UNRELEASED**

- Dropped Python 3.7 support

**4.0.0** (2022-12-18)

- **BACKWARD INCOMPATIBLE** Bumped minimum Asphalt version to 4.8
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ classifiers = [
"Topic :: Communications :: Email",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.7"
dependencies = [
Expand Down Expand Up @@ -59,7 +59,7 @@ sendmail = "asphalt.mailer.mailers.sendmail:SendmailMailer"
version_scheme = "post-release"
local_scheme = "dirty-tag"

[tool.ruff]
[tool.ruff.lint]
select = [
"ASYNC", # flake8-async
"E", "F", "W", # default Flake8
Expand Down Expand Up @@ -87,7 +87,7 @@ show_missing = true
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py37, py38, py39, py310, py311, pypy3
envlist = py38, py39, py310, py311, py312, pypy3
skip_missing_interpreters = true
minversion = 4.0
Expand Down

0 comments on commit cc3cb93

Please sign in to comment.