Skip to content

Commit af12e8f

Browse files
committed
remove 3.7 from CI, fix flake warnings
1 parent 91b2f34 commit af12e8f

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ sudo: false
66

77
python:
88
- "2.7"
9+
- "3.4"
910
- "3.5"
1011
- "3.6"
11-
- "3.7"
1212

1313
cache:
1414
- pip

setup.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
from setuptools import setup
22

33
setup(
4-
name='python-patterns',
5-
description='A collection of design patterns and idioms in Python.',
4+
name="python-patterns",
5+
description="A collection of design patterns and idioms in Python.",
66
classifiers=[
7-
'Programming Language :: Python :: 2',
8-
'Programming Language :: Python :: 2.7',
9-
'Programming Language :: Python :: 3',
10-
'Programming Language :: Python :: 3.5',
11-
'Programming Language :: Python :: 3.6',
12-
'Programming Language :: Python :: 3.7',
7+
"Programming Language :: Python :: 2",
8+
"Programming Language :: Python :: 2.7",
9+
"Programming Language :: Python :: 3",
10+
"Programming Language :: Python :: 3.4",
11+
"Programming Language :: Python :: 3.5",
12+
"Programming Language :: Python :: 3.6",
1313
],
14-
)
14+
)

0 commit comments

Comments
 (0)