Skip to content

Commit 74aaf91

Browse files
authored
Merge pull request #2927 from nicoddemus/release-3.2.5
Release 3.2.5
2 parents 54cea3d + a220a40 commit 74aaf91

File tree

5 files changed

+33
-2
lines changed

5 files changed

+33
-2
lines changed

CHANGELOG.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,17 @@
88
99
.. towncrier release notes start
1010
11+
Pytest 3.2.5 (2017-11-15)
12+
=========================
13+
14+
Bug Fixes
15+
---------
16+
17+
- Remove ``py<1.5`` restriction from ``pytest`` as this can cause version
18+
conflicts in some installations. (`#2926
19+
<https://github.com/pytest-dev/pytest/issues/2926>`_)
20+
21+
1122
Pytest 3.2.4 (2017-11-13)
1223
=========================
1324

@@ -28,6 +39,8 @@ Bug Fixes
2839
failed example in the docstring is < 9. (`#2882
2940
<https://github.com/pytest-dev/pytest/issues/2882>`_)
3041

42+
- Match fixture paths against actual path segments in order to avoid matching folders which share a prefix.
43+
(`#2836 <https://github.com/pytest-dev/pytest/issues/2836>`_)
3144

3245
Improved Documentation
3346
----------------------

changelog/2836.bug

Lines changed: 0 additions & 1 deletion
This file was deleted.

doc/en/announce/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Release announcements
66
:maxdepth: 2
77

88

9+
release-3.2.5
910
release-3.2.4
1011
release-3.2.3
1112
release-3.2.2

doc/en/announce/release-3.2.5.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
pytest-3.2.5
2+
=======================================
3+
4+
pytest 3.2.5 has just been released to PyPI.
5+
6+
This is a bug-fix release, being a drop-in replacement. To upgrade::
7+
8+
pip install --upgrade pytest
9+
10+
The full changelog is available at http://doc.pytest.org/en/latest/changelog.html.
11+
12+
Thanks to all who contributed to this release, among them:
13+
14+
* Bruno Oliveira
15+
16+
17+
Happy testing,
18+
The pytest Development Team

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def has_environment_marker_support():
4343

4444

4545
def main():
46-
install_requires = ['py>=1.4.33,<1.5', 'setuptools'] # pluggy is vendored in _pytest.vendored_packages
46+
install_requires = ['py>=1.4.33', 'setuptools'] # pluggy is vendored in _pytest.vendored_packages
4747
extras_require = {}
4848
if has_environment_marker_support():
4949
extras_require[':python_version=="2.6"'] = ['argparse', 'ordereddict']

0 commit comments

Comments
 (0)