Skip to content

Commit

Permalink
Merge pull request #326 from jupyter/auto-backport-of-pr-325
Browse files Browse the repository at this point in the history
Backport PR #325 on branch 5.2.x
  • Loading branch information
minrk authored Jan 2, 2018
2 parents 3fd21bc + 065a16a commit 5a28fb0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
Changes in Jupyter Client
=========================

5.2.1
=====

- Add parenthesis to conditional pytest requirement to work around a bug in the
``wheel`` package, that generate a ``.whl`` which otherwise always depends on
``pytest`` see :ghissue:`324` and :ghpull:`325`

5.2
===

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def run(self):
extras_require = {
'test': ['ipykernel', 'ipython', 'mock'],
'test:python_version == "3.3"': ['pytest<3.3.0'],
'test:python_version >= "3.4" or python_version == "2.7"': ['pytest'],
'test:(python_version >= "3.4" or python_version == "2.7")': ['pytest'],
},
cmdclass = {
'bdist_egg': bdist_egg if 'bdist_egg' in sys.argv else bdist_egg_disabled,
Expand Down

0 comments on commit 5a28fb0

Please sign in to comment.