Skip to content

Commit 9751e38

Browse files
committed
chore: drop python 3.4 support
1 parent a5de3ba commit 9751e38

File tree

4 files changed

+2
-10
lines changed

4 files changed

+2
-10
lines changed

.circleci/config.yml

-4
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,6 @@ workflows:
6565
- linter/pre-commit:
6666
python_version: 3.7.5
6767

68-
- toxpy:
69-
name: test-py3.4
70-
docker_image: '3.4'
71-
tox_environment: py34
7268
- toxpy:
7369
name: test-py3.5
7470
docker_image: '3.5'

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ sudo: false
22

33
language: python
44
python:
5-
- 3.4
65
- 3.5
76
- 3.6
87
- 3.7

setup.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,7 @@
3939
],
4040
tests_require=['mock', 'pytest'],
4141
extras_require={
42-
# N.B. PyYAML 5.3 dropped support for Python 3.4... which we should
43-
# also do...
44-
'yaml': ['PyYAML>=3.10,<5.3'],
42+
'yaml': ['PyYAML>=3.10'],
4543
},
4644
classifiers=[
4745
'Development Status :: 5 - Production/Stable',
@@ -50,7 +48,6 @@
5048
'License :: OSI Approved :: MIT License',
5149
'Operating System :: OS Independent',
5250
'Programming Language :: Python',
53-
'Programming Language :: Python :: 3.4',
5451
'Programming Language :: Python :: 3.5',
5552
'Programming Language :: Python :: 3.6',
5653
'Programming Language :: Python :: 3.7',

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{34,35}-cov{41}-{default,pyyaml},py{36,37,38,py3}-cov{41,5}-{default,pyyaml}
2+
envlist = py35-cov41-{default,pyyaml},py{36,37,38,py3}-cov{41,5}-{default,pyyaml}
33

44
[gh-actions]
55
python =

0 commit comments

Comments
 (0)