Skip to content

Commit

Permalink
Drop Python 3.4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
mwilliamson committed Mar 15, 2023
1 parent 1a87ac4 commit e9dbdca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Expand Up @@ -8,7 +8,7 @@ jobs:

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

steps:

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Expand Up @@ -20,7 +20,7 @@ def read(fname):
packages=['precisely'],
keywords="matcher matchers",
install_requires=[],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
license="BSD-2-Clause",
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand All @@ -30,7 +30,6 @@ def read(fname):
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py34,py35,py36,py37,py38,py39,pypy,docs
envlist = py27,py35,py36,py37,py38,py39,pypy,docs
[testenv]
changedir = {envtmpdir}
deps=-r{toxinidir}/test-requirements.txt
Expand Down

0 comments on commit e9dbdca

Please sign in to comment.