Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 3.3.0 #2945

Merged
merged 21 commits into from
Nov 27, 2017
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
4a0aea2
Add missing entry to CHANGELOG for 3.2.4
nicoddemus Nov 15, 2017
dd6c534
Remove py<1.5 restriction
nicoddemus Nov 15, 2017
a220a40
Preparing release version 3.2.5
nicoddemus Nov 15, 2017
74aaf91
Merge pull request #2927 from nicoddemus/release-3.2.5
nicoddemus Nov 15, 2017
f9029f1
Add Deprecation Roadmap to backward compatibility document
nicoddemus Nov 15, 2017
b0f558d
Add Future/Past Releases section
nicoddemus Nov 18, 2017
77bd0aa
Merge pull request #2931 from nicoddemus/deprecation-roadmap-docs
nicoddemus Nov 18, 2017
c8d52b6
Fix assertion rewrite to match module names correctly
nicoddemus Nov 22, 2017
8df7ed1
Merge pull request #2940 from nicoddemus/rewrite-bug-2939
The-Compiler Nov 22, 2017
5e71ffa
Handle marks without description
Perlence Nov 22, 2017
378eb5d
Minor formatting change in CHANGELOG
nicoddemus Nov 22, 2017
27935eb
Merge pull request #2943 from Perlence/fix-marks-without-description
nicoddemus Nov 22, 2017
f50ace7
Merge remote-tracking branch 'upstream/master' into release-3.3.0
nicoddemus Nov 23, 2017
e97c774
Remove vendoring import from tasks/__init__
nicoddemus Nov 23, 2017
aa9a02e
Preparing release version 3.3.0
nicoddemus Nov 23, 2017
0ddd3e2
Fix linting in CHANGELOG
nicoddemus Nov 23, 2017
05cfdcc
Revert making TerminalWriter public in TerminalReporter plugin
nicoddemus Nov 23, 2017
95de11a
Block pytest-catchlog and issue a warning
nicoddemus Nov 23, 2017
0de1a65
Update pluggy pin to pluggy>=0.5,<0.7 after pluggy-0.6 release
nicoddemus Nov 24, 2017
6eeacab
Fix typos in CHANGELOG
nicoddemus Nov 26, 2017
6cdd851
CHANGELOG and docs changes requested during review
nicoddemus Nov 27, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@

.. towncrier release notes start

Pytest 3.2.5 (2017-11-15)
=========================

Bug Fixes
---------

- Remove ``py<1.5`` restriction from ``pytest`` as this can cause version
conflicts in some installations. (`#2926
<https://github.com/pytest-dev/pytest/issues/2926>`_)


Pytest 3.2.4 (2017-11-13)
=========================

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

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

Improved Documentation
----------------------
Expand Down
1 change: 0 additions & 1 deletion changelog/2836.bug

This file was deleted.

1 change: 1 addition & 0 deletions doc/en/announce/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Release announcements
:maxdepth: 2


release-3.2.5
release-3.2.4
release-3.2.3
release-3.2.2
Expand Down
18 changes: 18 additions & 0 deletions doc/en/announce/release-3.2.5.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
pytest-3.2.5
=======================================

pytest 3.2.5 has just been released to PyPI.

This is a bug-fix release, being a drop-in replacement. To upgrade::

pip install --upgrade pytest

The full changelog is available at http://doc.pytest.org/en/latest/changelog.html.

Thanks to all who contributed to this release, among them:

* Bruno Oliveira


Happy testing,
The pytest Development Team
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def has_environment_marker_support():


def main():
install_requires = ['py>=1.4.33,<1.5', 'setuptools'] # pluggy is vendored in _pytest.vendored_packages
install_requires = ['py>=1.4.33', 'setuptools'] # pluggy is vendored in _pytest.vendored_packages
extras_require = {}
if has_environment_marker_support():
extras_require[':python_version=="2.6"'] = ['argparse', 'ordereddict']
Expand Down