Skip to content

Commit af9a84a

Browse files
committed
Clarify that Python 3.1 is not supported.
1 parent 65f1bb9 commit af9a84a

File tree

4 files changed

+10
-13
lines changed

4 files changed

+10
-13
lines changed

CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@
4444
+ Issue #13: Do not import pytest in setup.py to make it compatible
4545
with pipenv.
4646

47+
+ Clarify in the documentation that Python 3.1 is not officially
48+
supported because pytest 2.8 does not support it. There is no
49+
known issue with Python 3.1 though.
50+
4751
* Version 0.2 (2017-05-28)
4852

4953
** New features

README.rst

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,13 @@ The latest release version can be found at PyPI, see
2020
System requirements
2121
-------------------
2222

23-
+ Python 2.6, 2.7, or 3.1 and newer.
23+
+ Python 2.6, 2.7, or 3.2 and newer.
2424
Python 2.6 requires patching the sources, see below.
2525
+ `setuptools`_.
2626
+ `pytest`_ 2.8.0 or newer.
2727

28+
(Python 3.1 is not supported by pytest 2.8.0 itself.)
29+
2830

2931
Installation
3032
------------
@@ -70,16 +72,6 @@ The example test modules used in the documentation can be found in
7072
doc/examples in the source distribution.
7173

7274

73-
Bugs and limitations
74-
--------------------
75-
76-
+ The test fails with Python 3.1. At first glance, this looks like a
77-
problem between pytest and Python 3.1 rather then an issue in
78-
pytest-dependency. I didn't investigate this in detail, though. In
79-
any case, the module can be installed and the plugin seem to work
80-
fine also with Python 3.1.
81-
82-
8375
Copyright and License
8476
---------------------
8577

doc/src/install.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ Installation instructions
44
System requirements
55
-------------------
66

7-
+ Python 2.6, 2.7, or 3.1 and newer.
7+
+ Python 2.6, 2.7, or 3.2 and newer.
88
Python 2.6 requires patching the sources, see below.
99
+ `setuptools`_.
1010
+ `pytest`_ 2.8.0 or newer.
1111

12+
(Python 3.1 is not supported by pytest 2.8.0 itself.)
13+
1214

1315
Download
1416
--------

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ def make_release_tree(self, base_dir, files):
7272
'Programming Language :: Python :: 2.6',
7373
'Programming Language :: Python :: 2.7',
7474
'Programming Language :: Python :: 3',
75-
'Programming Language :: Python :: 3.1',
7675
'Programming Language :: Python :: 3.2',
7776
'Programming Language :: Python :: 3.3',
7877
'Programming Language :: Python :: 3.4',

0 commit comments

Comments
 (0)