Skip to content

Commit

Permalink
Drop support for Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder committed May 2, 2024
1 parent 72a8511 commit 670585a
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 11 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/test.yml
Expand Up @@ -19,21 +19,19 @@ jobs:
fail-fast: false
matrix:
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- 'pypy-3.7'
- 'pypy-3.8'
- 'pypy-3.9'
- 'pypy-3.10'
toxenv: [py]
include:
- python-version: '3.7'
- python-version: '3.8'
toxenv: lint
- python-version: '3.7'
- python-version: '3.8'
toxenv: typing
steps:
- name: Check out repository
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,7 +1,7 @@
v0.6.0 (in development)
-----------------------
- Support Python 3.10, 3.11, and 3.12
- Drop support for Python 3.6
- Drop support for Python 3.6 and 3.7
- Migrated from setuptools to hatch

v0.5.0 (2021-03-27)
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -34,7 +34,7 @@ classes are provided for composing more complex multipart e-mails.

Installation
============
``eletter`` requires Python 3.7 or higher. Just use `pip
``eletter`` requires Python 3.8 or higher. Just use `pip
<https://pip.pypa.io>`_ for Python 3 (You have pip, right?) to install
``eletter`` and its dependencies::

Expand Down
2 changes: 1 addition & 1 deletion docs/changelog.rst
Expand Up @@ -6,7 +6,7 @@ Changelog
v0.6.0 (in development)
-----------------------
- Support Python 3.10, 3.11, and 3.12
- Drop support for Python 3.6
- Drop support for Python 3.6 and 3.7
- Migrated from setuptools to hatch

v0.5.0 (2021-03-27)
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Expand Up @@ -26,7 +26,7 @@ and classes are provided for composing more complex multipart e-mails.

Installation
============
``eletter`` requires Python 3.7 or higher. Just use `pip
``eletter`` requires Python 3.8 or higher. Just use `pip
<https://pip.pypa.io>`_ for Python 3 (You have pip, right?) to install
``eletter`` and its dependencies::

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Expand Up @@ -7,7 +7,7 @@ name = "eletter"
dynamic = ["version"]
description = "Simple e-mail composition & decomposition"
readme = "README.rst"
requires-python = ">=3.7"
requires-python = ">=3.8"
license = "MIT"
license-files = { paths = ["LICENSE"] }
authors = [
Expand All @@ -24,7 +24,6 @@ keywords = [
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = lint,typing,py37,py38,py39,py310,py311,py312,pypy3
envlist = lint,typing,py38,py39,py310,py311,py312,pypy3
skip_missing_interpreters = True
isolated_build = True
minversion = 3.3.0
Expand Down

0 comments on commit 670585a

Please sign in to comment.