Skip to content

Commit 5a28fb0

Browse files
authored
Merge pull request #326 from jupyter/auto-backport-of-pr-325
Backport PR #325 on branch 5.2.x
2 parents 3fd21bc + 065a16a commit 5a28fb0

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

docs/changelog.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44
Changes in Jupyter Client
55
=========================
66

7+
5.2.1
8+
=====
9+
10+
- Add parenthesis to conditional pytest requirement to work around a bug in the
11+
``wheel`` package, that generate a ``.whl`` which otherwise always depends on
12+
``pytest`` see :ghissue:`324` and :ghpull:`325`
13+
714
5.2
815
===
916

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def run(self):
8686
extras_require = {
8787
'test': ['ipykernel', 'ipython', 'mock'],
8888
'test:python_version == "3.3"': ['pytest<3.3.0'],
89-
'test:python_version >= "3.4" or python_version == "2.7"': ['pytest'],
89+
'test:(python_version >= "3.4" or python_version == "2.7")': ['pytest'],
9090
},
9191
cmdclass = {
9292
'bdist_egg': bdist_egg if 'bdist_egg' in sys.argv else bdist_egg_disabled,

0 commit comments

Comments
 (0)