Skip to content

Commit 3c057f4

Browse files
committed
Drop support for Python 3.7 which is EOL'd now
1 parent 1b3e4c6 commit 3c057f4

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

.github/workflows/test_and_build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12.0-alpha.5"]
11+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12.0-alpha.5"]
1212

1313
steps:
1414
- uses: actions/checkout@v3

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ language: python
44
cache: pip
55

66
python:
7-
- '3.7'
87
- '3.8'
98
- '3.9'
109
- '3.10'

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
In Development
2+
--------------
3+
4+
* Python 3.8 is now required.
5+
16
2.0.0 (April 15, 2023)
27
----------------------
38

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ email-validator: Validate Email Addresses
22
=========================================
33

44
A robust email address syntax and deliverability validation library for
5-
Python 3.7+ by [Joshua Tauberer](https://joshdata.me).
5+
Python by [Joshua Tauberer](https://joshdata.me).
66

77
This library validates that a string is of the form `name@example.com`
88
and optionally checks that the domain name is set up to receive email.

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ classifiers =
1414
Intended Audience :: Developers
1515
License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
1616
Programming Language :: Python :: 3
17-
Programming Language :: Python :: 3.7
1817
Programming Language :: Python :: 3.8
1918
Programming Language :: Python :: 3.9
2019
Programming Language :: Python :: 3.10
@@ -27,7 +26,7 @@ packages = find:
2726
install_requires =
2827
dnspython>=2.0.0 # optional if deliverability check isn't needed
2928
idna>=2.0.0
30-
python_requires = >=3.7
29+
python_requires = >=3.8
3130

3231
[options.package_data]
3332
* = py.typed

0 commit comments

Comments
 (0)