Skip to content

Commit f13e3bb

Browse files
authored
Merge pull request #1 from jbasko/dev
Looks like it runs with Python 3.5 too. Good.
2 parents d6195f6 + e554221 commit f13e3bb

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ sudo: false
44
language: python
55
python:
66
- "2.7"
7+
- "3.5"
78

89
install:
910
- pip install tox

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ Usage
4141
License
4242
-------
4343

44-
Distributed under the terms of the `MIT`_ license, "pytest-random-order" is free and open source software
44+
Distributed under the terms of the MIT license, "pytest-random-order" is free and open source software
4545

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def read(fname):
1313

1414
setup(
1515
name='pytest-random-order',
16-
version='0.2.4',
16+
version='0.2.5',
1717
author='Jazeps Basko',
1818
author_email='[email protected]',
1919
maintainer='Jazeps Basko',
@@ -32,6 +32,8 @@ def read(fname):
3232
'Programming Language :: Python',
3333
'Programming Language :: Python :: 2',
3434
'Programming Language :: Python :: 2.7',
35+
'Programming Language :: Python :: 3',
36+
'Programming Language :: Python :: 3.5',
3537
'License :: OSI Approved :: MIT License',
3638
],
3739
entry_points={

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# For more information about tox, see https://tox.readthedocs.io/en/latest/
22
[tox]
3-
envlist = py27,flake8
3+
envlist = py27,py35,flake8
44

55
[testenv]
66
deps = pytest

0 commit comments

Comments
 (0)