Skip to content

Commit e9dbdca

Browse files
committed
Drop Python 3.4 support
1 parent 1a87ac4 commit e9dbdca

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
python-version: ["2.7", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy2.7", "pypy3.9"]
11+
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "pypy2.7", "pypy3.9"]
1212

1313
steps:
1414

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ 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.*',
23+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
2424
license="BSD-2-Clause",
2525
classifiers=[
2626
'Development Status :: 5 - Production/Stable',
@@ -30,7 +30,6 @@ def read(fname):
3030
'Programming Language :: Python :: 2',
3131
'Programming Language :: Python :: 2.7',
3232
'Programming Language :: Python :: 3',
33-
'Programming Language :: Python :: 3.4',
3433
'Programming Language :: Python :: 3.5',
3534
'Programming Language :: Python :: 3.6',
3635
'Programming Language :: Python :: 3.7',

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,py34,py35,py36,py37,py38,py39,pypy,docs
2+
envlist = py27,py35,py36,py37,py38,py39,pypy,docs
33
[testenv]
44
changedir = {envtmpdir}
55
deps=-r{toxinidir}/test-requirements.txt

0 commit comments

Comments
 (0)