Skip to content

Commit 44e4702

Browse files
authored
Merge pull request #5 from hugovk/update-python-versions
Update python versions
2 parents afdfde3 + 7ef4b65 commit 44e4702

File tree

4 files changed

+16
-17
lines changed

4 files changed

+16
-17
lines changed

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
language: python
2-
sudo: false
32

43
python:
54
- "2.7"
6-
- "3.3"
7-
- "3.4"
85
- "3.5"
96
- "3.6"
7+
- "3.7"
108
- "pypy"
9+
- "pypy3"
1110

1211
install:
1312
- pip install .

appveyor.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ environment:
66
- PYTHON: "C:\\Python27"
77
TOX_ENV: "py27"
88

9-
- PYTHON: "C:\\Python33"
10-
TOX_ENV: "py33"
11-
12-
- PYTHON: "C:\\Python34"
13-
TOX_ENV: "py34"
14-
159
- PYTHON: "C:\\Python35"
1610
TOX_ENV: "py35"
1711

12+
- PYTHON: "C:\\Python36"
13+
TOX_ENV: "py36"
14+
15+
- PYTHON: "C:\\Python37"
16+
TOX_ENV: "py37"
17+
1818

1919
init:
2020
- "%PYTHON%/python -V"

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
entry_points={'pytest11': ['echo = pytest_echo']},
1818
install_requires=['pytest>=2.2'],
1919
license="MIT License",
20+
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
2021
classifiers=[
2122
'Development Status :: 5 - Production/Stable',
2223
'Environment :: Plugins',
@@ -29,11 +30,10 @@
2930
'Topic :: Software Development :: Libraries',
3031
'Topic :: Utilities',
3132
'Programming Language :: Python',
32-
'Programming Language :: Python :: 2.6',
33+
'Programming Language :: Python :: 2',
3334
'Programming Language :: Python :: 2.7',
34-
'Programming Language :: Python :: 3.2',
35-
'Programming Language :: Python :: 3.3',
36-
'Programming Language :: Python :: 3.4',
35+
'Programming Language :: Python :: 3',
3736
'Programming Language :: Python :: 3.5',
38-
'Programming Language :: Python :: 3.6'
37+
'Programming Language :: Python :: 3.6',
38+
'Programming Language :: Python :: 3.7',
3939
])

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[tox]
2-
envlist=py{27,35,36}-pytest{30,31,32,33,34,35}
2+
envlist=py{27,35,36,37}-pytest{30,31,32,33,34,35}
33

44
[testenv]
55
deps =
66
coverage
7-
py{27,33},pypy: django<2
8-
py{34,35,36}: django>=2
7+
py{27},pypy: django<2
8+
py{35,36,37},pypy3: django>=2
99
pytest30: pytest>=3.0,<3.1
1010
pytest31: pytest>=3.1,<3.2
1111
pytest32: pytest>=3.2,<3.3

0 commit comments

Comments
 (0)