Skip to content

Commit b35d7b6

Browse files
committed
Drop support for EOL Python 3.4, not available on GHA CI
1 parent d3f12c6 commit b35d7b6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ["3.4", "3.5", "3.6", "3.7.7", "3.8"]
14+
python-version: ["3.5", "3.6", "3.7.7", "3.8"]
1515
os: [ubuntu-latest, macos-latest, windows-latest]
1616

1717
steps:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
description='Convert nose.tools.assert_ calls found in your Nose test modules into raw asserts for pytest',
2020
keywords='nose to pytest conversion',
2121

22+
python_requires='>=3.5',
2223
classifiers=[
2324
# How mature is this project? Common values are
2425
# 3 - Alpha
@@ -36,7 +37,6 @@
3637
# Specify the Python versions you support here.
3738
'Programming Language :: Python :: 3',
3839
'Programming Language :: Python :: 3 :: Only',
39-
'Programming Language :: Python :: 3.4',
4040
'Programming Language :: Python :: 3.5',
4141
'Programming Language :: Python :: 3.6',
4242
'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 = py34, py35, py36, py37, py38
2+
envlist = py35, py36, py37, py38
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)