Skip to content

Commit 365a8f8

Browse files
committed
Raise minimum Python version to 3.7
1 parent 72fe89f commit 365a8f8

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,14 @@ def read(fname):
2020
packages=['precisely'],
2121
keywords="matcher matchers",
2222
install_requires=[],
23-
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
23+
python_requires='>=3.7',
2424
license="BSD-2-Clause",
2525
classifiers=[
2626
'Development Status :: 5 - Production/Stable',
2727
'Intended Audience :: Developers',
2828
'License :: OSI Approved :: BSD License',
2929
'Programming Language :: Python',
30-
'Programming Language :: Python :: 2',
31-
'Programming Language :: Python :: 2.7',
3230
'Programming Language :: Python :: 3',
33-
'Programming Language :: Python :: 3.5',
34-
'Programming Language :: Python :: 3.6',
3531
'Programming Language :: Python :: 3.7',
3632
'Programming Language :: Python :: 3.8',
3733
'Programming Language :: Python :: 3.9',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py35,py36,py37,py38,py39,pypy,docs
2+
envlist = py37,py38,py39,pypy,docs
33
[testenv]
44
changedir = {envtmpdir}
55
deps=-r{toxinidir}/test-requirements.txt

0 commit comments

Comments
 (0)