Skip to content

Commit 8d56dd3

Browse files
committed
Drop support for EOL Python 3.4
1 parent 93b7ae3 commit 8d56dd3

File tree

4 files changed

+3
-8
lines changed

4 files changed

+3
-8
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ function decorators for mocking unnecessary.
218218
Requirements
219219
============
220220

221-
* Python 2.7, Python 3.4+
221+
* Python 2.7, Python 3.5+
222222
* pytest
223223
* mock (for Python 2)
224224

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
packages=find_packages(where="src"),
99
package_dir={"": "src"},
1010
platforms="any",
11-
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
11+
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
1212
install_requires=["pytest>=2.7", 'mock;python_version<"3.0"'],
1313
use_scm_version={"write_to": "src/pytest_mock/_version.py"},
1414
setup_requires=["setuptools_scm"],
@@ -29,7 +29,6 @@
2929
"Programming Language :: Python :: 2",
3030
"Programming Language :: Python :: 2.7",
3131
"Programming Language :: Python :: 3",
32-
"Programming Language :: Python :: 3.4",
3332
"Programming Language :: Python :: 3.5",
3433
"Programming Language :: Python :: 3.6",
3534
"Programming Language :: Python :: 3.7",

tests/test_pytest_mock.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -421,10 +421,6 @@ def assert_argument_introspection(left, right):
421421
raise AssertionError("DID NOT RAISE")
422422

423423

424-
@pytest.mark.skipif(
425-
sys.version_info[:2] == (3, 4),
426-
reason="assert_not_called not available in Python 3.4",
427-
)
428424
def test_assert_not_called_wrapper(mocker):
429425
stub = mocker.stub()
430426
stub.assert_not_called()

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{27,34,35,36,37}, linting, norewrite
2+
envlist = py{27,35,36,37,38}, linting, norewrite
33

44
[testenv]
55
passenv = USER USERNAME

0 commit comments

Comments
 (0)