Skip to content

Commit 5118a94

Browse files
committed
Merge remote-tracking branch 'origin/5.2.x' into 5.x
Get 5.2.1 changes into the 5.x branch
2 parents 815c0aa + 5ced6c6 commit 5118a94

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
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

jupyter_client/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version_info = (5, 2, 0)
1+
version_info = (5, 2, 1)
22
__version__ = '.'.join(map(str, version_info))
33

44
protocol_version_info = (5, 3)

setup.py

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

0 commit comments

Comments
 (0)