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 9fe1342 commit 9a9ab60
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
Expand All @@ -30,9 +29,9 @@ jobs:
- '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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ v0.6.1 (in development)
-----------------------
- Support platformdirs v4.0
- Migrated from setuptools to hatch
- Drop support for Python 3.7

v0.6.0 (2023-10-30)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ information.

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

Expand Down
1 change: 1 addition & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ v0.6.1 (in development)
-----------------------
- Support platformdirs v4.0
- Migrated from setuptools to hatch
- Drop support for Python 3.7

v0.6.0 (2023-10-30)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ methods are provided by :doc:`extension packages <extensions>`.

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

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "outgoing"
dynamic = ["version"]
description = "Common interface for multiple e-mail methods"
readme = "README.rst"
requires-python = ">=3.7"
requires-python = ">=3.8"
license = "MIT"
license-files = { paths = ["LICENSE"] }
authors = [
Expand All @@ -27,7 +27,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
Original file line number Diff line number Diff line change
@@ -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 9a9ab60

Please sign in to comment.