Skip to content

Commit 5ef10a1

Browse files
committed
update supported python versions
* drop python 2.6, 3.2, 3.3 * add python 3.5, 3.6
1 parent b3f8633 commit 5ef10a1

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

.travis.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ matrix:
33
include:
44
- python: "2.7"
55
env: NOSE_IGNORE_FILES=test_py3_sugar.py
6-
- python: "3.2"
7-
- python: "3.3"
86
- python: "3.4"
7+
- python: "3.5"
8+
- python: "3.6"
99
services: mongodb
1010
install:
11-
- pip install -r requirements.txt -r requirements-test.txt
12-
- pip install motor pep8
11+
- pip install -r requirements-test.txt
1312
script:
14-
- "pep8 --ignore=E501 ./nanomongo"
15-
- "nosetests --with-coverage --cover-package=nanomongo"
13+
- "flake8"
14+
- "NANOMONGO_SKIP_MOTOR=1 nosetests"

setup.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,11 @@
2525
'Operating System :: OS Independent',
2626
'Programming Language :: Python',
2727
'Programming Language :: Python :: 2',
28-
'Programming Language :: Python :: 2.6',
2928
'Programming Language :: Python :: 2.7',
3029
'Programming Language :: Python :: 3',
31-
'Programming Language :: Python :: 3.2',
32-
'Programming Language :: Python :: 3.3',
3330
'Programming Language :: Python :: 3.4',
31+
'Programming Language :: Python :: 3.5',
32+
'Programming Language :: Python :: 3.6',
3433
'Programming Language :: Python :: Implementation :: CPython',
3534
'Topic :: Database',
3635
'Topic :: Software Development :: Libraries :: Python Modules',

0 commit comments

Comments
 (0)