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

Patch notebook < 7 dependencies for jupyter_client and pyzmq #489

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

RRosio
Copy link

@RRosio RRosio commented Aug 1, 2023

Checklist

  • Ran python show_diff.py and posted the output as part of the PR.
  • Modifications won't affect packages built in the future.

Having trouble running this script due to issues with conda/conda_build. After installing the conda_build with pip it pulled 2.1.5 and the following is the error message I am running into:

(repodata_notebook_cf) ➜ rosio@Rosios-MacBook-Pro  ~/Desktop/code/conda-forge/conda-forge-repodata-patches-feedstock/recipe git:(notebook_patch) python show_diff.py    
Traceback (most recent call last):
  File "/Users/me/Desktop/code/conda-forge/conda-forge-repodata-patches-feedstock/recipe/show_diff.py", line 12, in <module>
    from conda_build.index import _apply_instructions
  File "/Users/me/osx64/miniconda3/lib/python3.9/site-packages/conda_build/index.py", line 14, in <module>
    from conda_build.utils import file_info, get_lock, try_acquire_locks
  File "/Users/me/osx64/miniconda3/lib/python3.9/site-packages/conda_build/utils.py", line 27, in <module>
    from .conda_interface import md5_file, unix_path_to_win, win_path_to_unix
  File "/Users/me/osx64/miniconda3/lib/python3.9/site-packages/conda_build/conda_interface.py", line 9, in <module>
    from conda import compat, plan  # NOQA
ImportError: cannot import name 'compat' from 'conda' (/Users/me/osx64/miniconda3/lib/python3.9/site-packages/conda/__init__.py)

@RRosio
Copy link
Author

RRosio commented Aug 2, 2023

Pinging @bollwyvl for some help with this PR! Thank you in advance!

# all versions of Notebook < 7 should at least pin to
# jupyter_client < 8 and pyzmq < 25 as in
# https://github.com/jupyter/notebook/pull/6749
if record_name == "notebook" and int(record["version"].split(".", 1)[0]) < 7:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note the second checklist item in the PR template...

Make sure to add a condition and record.get("timestamp", 0) < NOW so your changes only affect packages built in the past. Replace NOW with python -c "import time; print(f'{time.time():.0f}000')" -->

...so perhaps something like:

if (
    record_name == "notebook" 
    and int(record["version"].split(".", 1)[0]) < 7
    and record.get("timestamp", 0) < 1691035398000
):

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you! I have updated the condition!

@bollwyvl
Copy link
Contributor

bollwyvl commented Aug 3, 2023

you can get the diff output from a known-good env on CI, a la:

https://dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=755339&view=logs&j=656edd35-690f-5c53-9ba3-09c10d0bea97&t=e5c8ab1d-8ff9-5cae-b332-e15ae582ed2d&l=387

(view raw log, snip out the relevant bits)

After installing the conda_build with pip

Yeah, whatever it says on the tin, pretty much nothing from conda up is going to work when installed with pip.

For conda-forge related stuff, i recommend:

  • start with a dedicated miniforge install
  • ideally mambaforge, as that's what CI uses
  • create an environment with "the conda-forge junk"
# environment.yml
name: conda-forge-chores
channels:
- conda-forge
- nodefaults
dependencies:
- python >=3.11,<3.12
- mamba
- boa
- conda-smithy
- conda-build
- conda-lock
- grayskull
- conda-suggest

do all conda-forge-related stuff from this env, and keep it relatively up-to-date.

@conda-forge-webservices
Copy link
Contributor

Hi! This is the friendly automated conda-forge-linting service.

I just wanted to let you know that I linted all conda-recipes in your PR (recipe) and found it was in an excellent condition.

@RRosio
Copy link
Author

RRosio commented Aug 3, 2023

Thank you @bollwyvl for the guidance! I was able to follow your advice to run the script. The diff is quite long so please find it either in the dropdown below or this gist.

Diff for patch

noarch::notebook-6.3.0-pyha770c72_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
noarch::notebook-6.4.0-pyha770c72_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
noarch::notebook-6.4.1-pyha770c72_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
noarch::notebook-6.4.10-pyha770c72_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
noarch::notebook-6.4.11-pyha770c72_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
noarch::notebook-6.4.12-pyha770c72_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
noarch::notebook-6.4.2-pyha770c72_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
noarch::notebook-6.4.3-pyha770c72_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
noarch::notebook-6.4.4-pyha770c72_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
noarch::notebook-6.4.5-pyha770c72_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
noarch::notebook-6.4.6-pyha770c72_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
noarch::notebook-6.4.7-pyha770c72_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
noarch::notebook-6.4.8-pyha770c72_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
noarch::notebook-6.4.9-pyha770c72_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
noarch::notebook-6.5.1-pyha770c72_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
noarch::notebook-6.5.2-pyha770c72_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
noarch::notebook-6.5.2-pyha770c72_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
noarch::notebook-6.5.3-pyha770c72_0.conda
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
noarch::notebook-6.5.4-pyha770c72_0.conda
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-4.1.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.1.0"
+  "version": "4.1.0",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-4.1.0-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.1.0"
+  "version": "4.1.0",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
linux-64::notebook-4.1.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.1.0"
+  "version": "4.1.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-4.2.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.0"
+  "version": "4.2.0",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-4.2.0-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.0"
+  "version": "4.2.0",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
linux-64::notebook-4.2.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.0"
+  "version": "4.2.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-4.2.1-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.1"
+  "version": "4.2.1",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-4.2.1-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.1"
+  "version": "4.2.1",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
linux-64::notebook-4.2.1-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.1"
+  "version": "4.2.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-4.2.2-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.2"
+  "version": "4.2.2",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-4.2.2-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.2"
+  "version": "4.2.2",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
linux-64::notebook-4.2.2-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.2"
+  "version": "4.2.2",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-4.2.3-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.3"
+  "version": "4.2.3",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-4.2.3-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.3"
+  "version": "4.2.3",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
linux-64::notebook-4.2.3-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.3"
+  "version": "4.2.3",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-4.3.1-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.1"
+  "version": "4.3.1",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-4.3.1-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.1"
+  "version": "4.3.1",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
linux-64::notebook-4.3.1-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.1"
+  "version": "4.3.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-4.3.2-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.2"
+  "version": "4.3.2",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-4.3.2-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.2"
+  "version": "4.3.2",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-4.3.2-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.2"
+  "version": "4.3.2",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-4.4.1-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.4.1"
+  "version": "4.4.1",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-4.4.1-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.4.1"
+  "version": "4.4.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-4.4.1-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.4.1"
+  "version": "4.4.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.0.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.0.0"
+  "version": "5.0.0",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.0.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.0.0"
+  "version": "5.0.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-5.0.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.0.0"
+  "version": "5.0.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.1.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.1.0"
+  "version": "5.1.0",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.1.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.1.0"
+  "version": "5.1.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-5.1.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.1.0"
+  "version": "5.1.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.2.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.2.0-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.2.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-5.2.0-py35_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-5.2.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.2.0-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.2.1-py27_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.1"
+  "version": "5.2.1",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.2.1-py35_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.1"
+  "version": "5.2.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-5.2.1-py36_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.1"
+  "version": "5.2.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.2.2-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.2.2-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.2.2-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-5.2.2-py35_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-5.2.2-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.2.2-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.3.1-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.3.1-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.3.1-py27_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.3.1-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-5.3.1-py35_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-5.3.1-py35_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-5.3.1-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.3.1-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.3.1-py36_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.4.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.0"
+  "version": "5.4.0",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.4.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.0"
+  "version": "5.4.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-5.4.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.0"
+  "version": "5.4.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.4.1-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.1"
+  "version": "5.4.1",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.4.1-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.1"
+  "version": "5.4.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-5.4.1-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.1"
+  "version": "5.4.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.5.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.5.0"
+  "version": "5.5.0",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.5.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.5.0"
+  "version": "5.5.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-5.5.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.5.0"
+  "version": "5.5.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.6.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.6.0-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.6.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-5.6.0-py35_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-5.6.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.6.0-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.6.0-py37_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
linux-64::notebook-5.7.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.0"
+  "version": "5.7.0",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.7.0-py27_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.0"
+  "version": "5.7.0",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.7.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.0"
+  "version": "5.7.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
linux-64::notebook-5.7.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.0"
+  "version": "5.7.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.7.0-py36_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.0"
+  "version": "5.7.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.7.0-py37_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.0"
+  "version": "5.7.0",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
linux-64::notebook-5.7.1-py27_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.1"
+  "version": "5.7.1",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.7.1-py36_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.1"
+  "version": "5.7.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.7.1-py37_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.1"
+  "version": "5.7.1",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
linux-64::notebook-5.7.10-py36h9f0ad1d_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-5.7.10-py37hc8dfbb8_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-5.7.11-py36h5fab9bb_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-5.7.11-py37h89c1867_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-5.7.11-py38h578d9bd_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-5.7.11-py39hf3d152e_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-5.7.2-py27_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.2"
+  "version": "5.7.2",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.7.2-py36_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.2"
+  "version": "5.7.2",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.7.2-py37_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.2"
+  "version": "5.7.2",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
linux-64::notebook-5.7.4-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.4"
+  "version": "5.7.4",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.7.4-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.4"
+  "version": "5.7.4",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.7.4-py37_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.4"
+  "version": "5.7.4",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
linux-64::notebook-5.7.5-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.5"
+  "version": "5.7.5",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.7.5-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.5"
+  "version": "5.7.5",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.7.5-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.5"
+  "version": "5.7.5",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
linux-64::notebook-5.7.6-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.6"
+  "version": "5.7.6",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.7.6-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.6"
+  "version": "5.7.6",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.7.6-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.6"
+  "version": "5.7.6",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
linux-64::notebook-5.7.7-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.7"
+  "version": "5.7.7",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.7.7-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.7"
+  "version": "5.7.7",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.7.7-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.7"
+  "version": "5.7.7",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
linux-64::notebook-5.7.8-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.8"
+  "version": "5.7.8",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.7.8-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27mu"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.8"
+  "version": "5.7.8",
+  "constrains": [
+    "python_abi * *_cp27mu"
+  ]
linux-64::notebook-5.7.8-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.8"
+  "version": "5.7.8",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.7.8-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.8"
+  "version": "5.7.8",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-5.7.8-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.8"
+  "version": "5.7.8",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
linux-64::notebook-5.7.8-py37_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.8"
+  "version": "5.7.8",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
linux-64::notebook-5.7.9-py36h9f0ad1d_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-5.7.9-py37hc8dfbb8_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.0.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.0"
+  "version": "6.0.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-6.0.0-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.0"
+  "version": "6.0.0",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
linux-64::notebook-6.0.1-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.1"
+  "version": "6.0.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-6.0.1-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.1"
+  "version": "6.0.1",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
linux-64::notebook-6.0.1-py38_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp38"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.1"
+  "version": "6.0.1",
+  "constrains": [
+    "python_abi * *_cp38"
+  ]
linux-64::notebook-6.0.2-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.2"
+  "version": "6.0.2",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-6.0.2-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.2"
+  "version": "6.0.2",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
linux-64::notebook-6.0.2-py38_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp38"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.2"
+  "version": "6.0.2",
+  "constrains": [
+    "python_abi * *_cp38"
+  ]
linux-64::notebook-6.0.3-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.3"
+  "version": "6.0.3",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-64::notebook-6.0.3-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.0.3-py36h9f0ad1d_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.0.3-py36hc560c46_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.0.3-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.3"
+  "version": "6.0.3",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
linux-64::notebook-6.0.3-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.0.3-py37hc8dfbb8_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.0.3-py38_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp38"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.3"
+  "version": "6.0.3",
+  "constrains": [
+    "python_abi * *_cp38"
+  ]
linux-64::notebook-6.0.3-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.0.3-py38h32f6830_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.0-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.0-py36hc560c46_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.0-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.0-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.1-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.1-py36hc560c46_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.1-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.1-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.2-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.2-py36hc560c46_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.2-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.2-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.3-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.3-py36hc560c46_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.3-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.3-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.4-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.4-py36h9f0ad1d_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.4-py36hc560c46_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.4-py36hc560c46_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.4-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.4-py37hc8dfbb8_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.4-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.4-py38h32f6830_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.4-py39hde42818_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.5-py36h5fab9bb_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.5-py36hd000896_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.5-py37h89c1867_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.5-py38h578d9bd_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.5-py39hf3d152e_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.6-py36h5fab9bb_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.6-py36hd000896_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.6-py37h89c1867_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.6-py38h578d9bd_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.1.6-py39hf3d152e_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.2.0-py36h5fab9bb_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.2.0-py36hd000896_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.2.0-py37h89c1867_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.2.0-py37h9c2f6ca_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.2.0-py38h578d9bd_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.2.0-py39hf3d152e_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.3.0-py36h5fab9bb_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.3.0-py36hd000896_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.3.0-py37h89c1867_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.3.0-py37h9c2f6ca_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.3.0-py38h578d9bd_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-64::notebook-6.3.0-py39hf3d152e_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.0.1-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.1"
+  "version": "6.0.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-aarch64::notebook-6.0.1-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.1"
+  "version": "6.0.1",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
linux-aarch64::notebook-6.0.1-py38_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp38"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.1"
+  "version": "6.0.1",
+  "constrains": [
+    "python_abi * *_cp38"
+  ]
linux-aarch64::notebook-6.0.2-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.2"
+  "version": "6.0.2",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-aarch64::notebook-6.0.2-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.2"
+  "version": "6.0.2",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
linux-aarch64::notebook-6.0.2-py38_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp38"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.2"
+  "version": "6.0.2",
+  "constrains": [
+    "python_abi * *_cp38"
+  ]
linux-aarch64::notebook-6.0.3-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.3"
+  "version": "6.0.3",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-aarch64::notebook-6.0.3-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.0.3-py36h9f0ad1d_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.0.3-py36hc560c46_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.0.3-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.3"
+  "version": "6.0.3",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
linux-aarch64::notebook-6.0.3-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.0.3-py37hc8dfbb8_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.0.3-py38_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp38"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.3"
+  "version": "6.0.3",
+  "constrains": [
+    "python_abi * *_cp38"
+  ]
linux-aarch64::notebook-6.0.3-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.0.3-py38h32f6830_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.0-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.0-py36hc560c46_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.0-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.0-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.1-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.1-py36hc560c46_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.1-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.1-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.2-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.2-py36hc560c46_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.2-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.2-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.3-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.3-py36hc560c46_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.3-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.3-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.4-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.4-py36h9f0ad1d_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.4-py36hc560c46_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.4-py36hc560c46_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.4-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.4-py37hc8dfbb8_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.4-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.4-py38h32f6830_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.4-py39hde42818_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.5-py36h2e20a7f_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.5-py36h704843e_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.5-py37hd9ded2f_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.5-py38h2063c64_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.5-py39ha65689a_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.6-py36h2e20a7f_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.6-py36h704843e_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.6-py37hd9ded2f_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.6-py38h2063c64_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.1.6-py39ha65689a_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.2.0-py36h2e20a7f_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.2.0-py36h704843e_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.2.0-py37h4bcbb9b_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.2.0-py37hd9ded2f_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.2.0-py38h2063c64_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.2.0-py39ha65689a_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.3.0-py36h2e20a7f_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.3.0-py36h704843e_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.3.0-py37h4bcbb9b_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.3.0-py37hd9ded2f_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.3.0-py38h2063c64_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-aarch64::notebook-6.3.0-py39ha65689a_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.0.1-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.1"
+  "version": "6.0.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-ppc64le::notebook-6.0.1-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.1"
+  "version": "6.0.1",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
linux-ppc64le::notebook-6.0.1-py38_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp38"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.1"
+  "version": "6.0.1",
+  "constrains": [
+    "python_abi * *_cp38"
+  ]
linux-ppc64le::notebook-6.0.2-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.2"
+  "version": "6.0.2",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-ppc64le::notebook-6.0.2-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.2"
+  "version": "6.0.2",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
linux-ppc64le::notebook-6.0.2-py38_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp38"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.2"
+  "version": "6.0.2",
+  "constrains": [
+    "python_abi * *_cp38"
+  ]
linux-ppc64le::notebook-6.0.3-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.3"
+  "version": "6.0.3",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
linux-ppc64le::notebook-6.0.3-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.0.3-py36h9f0ad1d_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.0.3-py36hc560c46_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.0.3-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.3"
+  "version": "6.0.3",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
linux-ppc64le::notebook-6.0.3-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.0.3-py37hc8dfbb8_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.0.3-py38_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp38"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.3"
+  "version": "6.0.3",
+  "constrains": [
+    "python_abi * *_cp38"
+  ]
linux-ppc64le::notebook-6.0.3-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.0.3-py38h32f6830_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.0-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.0-py36hc560c46_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.0-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.0-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.1-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.1-py36hc560c46_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.1-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.1-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.2-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.2-py36hc560c46_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.2-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.2-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.3-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.3-py36hc560c46_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.3-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.3-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.4-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.4-py36h9f0ad1d_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.4-py36hc560c46_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.4-py36hc560c46_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.4-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.4-py37hc8dfbb8_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.4-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.4-py38h32f6830_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.4-py39hde42818_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.5-py36h270354c_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.5-py36he7cccf2_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.5-py37h35e4cab_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.5-py38hf8b3453_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.5-py39hc1b9086_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.6-py36h270354c_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.6-py36he7cccf2_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.6-py37h35e4cab_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.6-py38hf8b3453_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.1.6-py39hc1b9086_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.2.0-py36h270354c_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.2.0-py36he7cccf2_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.2.0-py37h35e4cab_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.2.0-py37hadc05a3_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.2.0-py38hf8b3453_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.2.0-py39hc1b9086_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.3.0-py36h270354c_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.3.0-py36he7cccf2_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.3.0-py37h35e4cab_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.3.0-py37hadc05a3_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.3.0-py38hf8b3453_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
linux-ppc64le::notebook-6.3.0-py39hc1b9086_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-4.1.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.1.0"
+  "version": "4.1.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-4.1.0-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.1.0"
+  "version": "4.1.0",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
osx-64::notebook-4.1.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.1.0"
+  "version": "4.1.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-4.2.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.0"
+  "version": "4.2.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-4.2.0-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.0"
+  "version": "4.2.0",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
osx-64::notebook-4.2.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.0"
+  "version": "4.2.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-4.2.1-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.1"
+  "version": "4.2.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-4.2.1-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.1"
+  "version": "4.2.1",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
osx-64::notebook-4.2.1-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.1"
+  "version": "4.2.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-4.2.2-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.2"
+  "version": "4.2.2",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-4.2.2-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.2"
+  "version": "4.2.2",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
osx-64::notebook-4.2.2-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.2"
+  "version": "4.2.2",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-4.2.3-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.3"
+  "version": "4.2.3",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-4.2.3-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.3"
+  "version": "4.2.3",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
osx-64::notebook-4.2.3-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.3"
+  "version": "4.2.3",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-4.3.1-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.1"
+  "version": "4.3.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-4.3.1-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.1"
+  "version": "4.3.1",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
osx-64::notebook-4.3.1-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.1"
+  "version": "4.3.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-4.3.2-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.2"
+  "version": "4.3.2",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-4.3.2-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.2"
+  "version": "4.3.2",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-4.3.2-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.2"
+  "version": "4.3.2",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-4.4.1-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.4.1"
+  "version": "4.4.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-4.4.1-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.4.1"
+  "version": "4.4.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-4.4.1-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.4.1"
+  "version": "4.4.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.0.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.0.0"
+  "version": "5.0.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.0.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.0.0"
+  "version": "5.0.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-5.0.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.0.0"
+  "version": "5.0.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.1.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.1.0"
+  "version": "5.1.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.1.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.1.0"
+  "version": "5.1.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-5.1.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.1.0"
+  "version": "5.1.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.2.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.2.0-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.2.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-5.2.0-py35_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-5.2.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.2.0-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.2.1-py27_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.1"
+  "version": "5.2.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.2.1-py35_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.1"
+  "version": "5.2.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-5.2.1-py36_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.1"
+  "version": "5.2.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.2.2-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.2.2-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.2.2-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-5.2.2-py35_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-5.2.2-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.2.2-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.3.1-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.3.1-py35_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-5.3.1-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.4.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.0"
+  "version": "5.4.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.4.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.0"
+  "version": "5.4.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-5.4.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.0"
+  "version": "5.4.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.4.1-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.1"
+  "version": "5.4.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.4.1-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.1"
+  "version": "5.4.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-5.4.1-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.1"
+  "version": "5.4.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.5.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.5.0"
+  "version": "5.5.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.5.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.5.0"
+  "version": "5.5.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-5.5.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.5.0"
+  "version": "5.5.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.6.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.6.0-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.6.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-5.6.0-py35_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-5.6.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.6.0-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.6.0-py37_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
osx-64::notebook-5.7.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.0"
+  "version": "5.7.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.7.0-py27_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.0"
+  "version": "5.7.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.7.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.0"
+  "version": "5.7.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
osx-64::notebook-5.7.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.0"
+  "version": "5.7.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.7.0-py36_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.0"
+  "version": "5.7.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.7.0-py37_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.0"
+  "version": "5.7.0",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
osx-64::notebook-5.7.1-py27_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.1"
+  "version": "5.7.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.7.1-py36_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.1"
+  "version": "5.7.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.7.1-py37_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.1"
+  "version": "5.7.1",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
osx-64::notebook-5.7.10-py36h9f0ad1d_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-5.7.10-py37hc8dfbb8_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-5.7.11-py36h79c6626_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-5.7.11-py37hf985489_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-5.7.11-py38h50d1736_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-5.7.11-py39h6e9494a_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-5.7.2-py27_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.2"
+  "version": "5.7.2",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.7.2-py36_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.2"
+  "version": "5.7.2",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.7.2-py37_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.2"
+  "version": "5.7.2",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
osx-64::notebook-5.7.4-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.4"
+  "version": "5.7.4",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.7.4-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.4"
+  "version": "5.7.4",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.7.4-py37_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.4"
+  "version": "5.7.4",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
osx-64::notebook-5.7.5-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.5"
+  "version": "5.7.5",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.7.5-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.5"
+  "version": "5.7.5",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.7.5-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.5"
+  "version": "5.7.5",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
osx-64::notebook-5.7.6-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.6"
+  "version": "5.7.6",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.7.6-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.6"
+  "version": "5.7.6",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.7.6-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.6"
+  "version": "5.7.6",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
osx-64::notebook-5.7.7-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.7"
+  "version": "5.7.7",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.7.7-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.7"
+  "version": "5.7.7",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.7.7-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.7"
+  "version": "5.7.7",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
osx-64::notebook-5.7.8-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.8"
+  "version": "5.7.8",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.7.8-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.8"
+  "version": "5.7.8",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
osx-64::notebook-5.7.8-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.8"
+  "version": "5.7.8",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.7.8-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.8"
+  "version": "5.7.8",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-5.7.8-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.8"
+  "version": "5.7.8",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
osx-64::notebook-5.7.8-py37_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.8"
+  "version": "5.7.8",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
osx-64::notebook-5.7.9-py36h9f0ad1d_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-5.7.9-py37hc8dfbb8_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.0.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.0"
+  "version": "6.0.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-6.0.0-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.0"
+  "version": "6.0.0",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
osx-64::notebook-6.0.1-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.1"
+  "version": "6.0.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-6.0.1-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.1"
+  "version": "6.0.1",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
osx-64::notebook-6.0.1-py38_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp38"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.1"
+  "version": "6.0.1",
+  "constrains": [
+    "python_abi * *_cp38"
+  ]
osx-64::notebook-6.0.2-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.2"
+  "version": "6.0.2",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-6.0.2-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.2"
+  "version": "6.0.2",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
osx-64::notebook-6.0.2-py38_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp38"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.2"
+  "version": "6.0.2",
+  "constrains": [
+    "python_abi * *_cp38"
+  ]
osx-64::notebook-6.0.3-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.3"
+  "version": "6.0.3",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
osx-64::notebook-6.0.3-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.0.3-py36h9f0ad1d_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.0.3-py36hc560c46_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.0.3-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.3"
+  "version": "6.0.3",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
osx-64::notebook-6.0.3-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.0.3-py37hc8dfbb8_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.0.3-py38_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp38"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.3"
+  "version": "6.0.3",
+  "constrains": [
+    "python_abi * *_cp38"
+  ]
osx-64::notebook-6.0.3-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.0.3-py38h32f6830_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.0-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.0-py36hc560c46_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.0-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.0-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.1-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.1-py36hc560c46_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.1-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.1-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.2-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.2-py36hc560c46_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.2-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.2-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.3-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.3-py36hc560c46_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.3-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.3-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.4-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.4-py36h9f0ad1d_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.4-py36hc560c46_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.4-py36hc560c46_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.4-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.4-py37hc8dfbb8_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.4-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.4-py38h32f6830_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.4-py39hde42818_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.5-py36h5dafb3c_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.5-py36h79c6626_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.5-py37hf985489_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.5-py38h50d1736_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.5-py39h6e9494a_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.6-py36h5dafb3c_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.6-py36h79c6626_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.6-py37hf985489_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.6-py38h50d1736_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.1.6-py39h6e9494a_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.2.0-py36h5dafb3c_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.2.0-py36h79c6626_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.2.0-py37h5186d4c_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.2.0-py37hf985489_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.2.0-py38h50d1736_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.2.0-py39h6e9494a_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.3.0-py36h5dafb3c_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.3.0-py36h79c6626_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.3.0-py37h5186d4c_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.3.0-py37hf985489_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.3.0-py38h50d1736_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-64::notebook-6.3.0-py39h6e9494a_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-arm64::notebook-6.1.5-py38h10201cd_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-arm64::notebook-6.1.5-py39h2804cbe_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-arm64::notebook-6.1.6-py38h10201cd_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-arm64::notebook-6.1.6-py39h2804cbe_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-arm64::notebook-6.2.0-py38h10201cd_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-arm64::notebook-6.2.0-py39h2804cbe_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-arm64::notebook-6.3.0-py38h10201cd_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
osx-arm64::notebook-6.3.0-py39h2804cbe_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-32::notebook-4.1.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.1.0"
+  "version": "4.1.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-32::notebook-4.1.0-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.1.0"
+  "version": "4.1.0",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
win-32::notebook-4.1.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.1.0"
+  "version": "4.1.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-32::notebook-4.2.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.0"
+  "version": "4.2.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-32::notebook-4.2.0-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.0"
+  "version": "4.2.0",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
win-32::notebook-4.2.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.0"
+  "version": "4.2.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-32::notebook-4.2.1-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.1"
+  "version": "4.2.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-32::notebook-4.2.1-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.1"
+  "version": "4.2.1",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
win-32::notebook-4.2.1-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.1"
+  "version": "4.2.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-32::notebook-4.2.2-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.2"
+  "version": "4.2.2",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-32::notebook-4.2.2-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.2"
+  "version": "4.2.2",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
win-32::notebook-4.2.2-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.2"
+  "version": "4.2.2",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-32::notebook-4.2.3-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.3"
+  "version": "4.2.3",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-32::notebook-4.2.3-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.3"
+  "version": "4.2.3",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
win-32::notebook-4.2.3-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.3"
+  "version": "4.2.3",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-32::notebook-4.3.1-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.1"
+  "version": "4.3.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-32::notebook-4.3.1-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.1"
+  "version": "4.3.1",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
win-32::notebook-4.3.1-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.1"
+  "version": "4.3.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-32::notebook-4.3.2-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.2"
+  "version": "4.3.2",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-32::notebook-4.3.2-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.2"
+  "version": "4.3.2",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-32::notebook-4.3.2-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.2"
+  "version": "4.3.2",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-32::notebook-4.4.1-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.4.1"
+  "version": "4.4.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-32::notebook-4.4.1-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.4.1"
+  "version": "4.4.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-32::notebook-4.4.1-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.4.1"
+  "version": "4.4.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-32::notebook-5.0.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.0.0"
+  "version": "5.0.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-32::notebook-5.0.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.0.0"
+  "version": "5.0.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-32::notebook-5.0.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.0.0"
+  "version": "5.0.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-32::notebook-5.1.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.1.0"
+  "version": "5.1.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-32::notebook-5.1.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.1.0"
+  "version": "5.1.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-32::notebook-5.1.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.1.0"
+  "version": "5.1.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-32::notebook-5.2.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-32::notebook-5.2.0-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-32::notebook-5.2.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-32::notebook-5.2.0-py35_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-32::notebook-5.2.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-32::notebook-5.2.0-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-32::notebook-5.2.1-py27_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.1"
+  "version": "5.2.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-32::notebook-5.2.1-py35_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.1"
+  "version": "5.2.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-32::notebook-5.2.1-py36_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.1"
+  "version": "5.2.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-32::notebook-5.2.2-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-32::notebook-5.2.2-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-32::notebook-5.2.2-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-32::notebook-5.2.2-py35_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-32::notebook-5.2.2-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-32::notebook-5.2.2-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-32::notebook-5.3.1-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-32::notebook-5.3.1-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-32::notebook-5.3.1-py27_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-32::notebook-5.3.1-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-32::notebook-5.3.1-py35_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-32::notebook-5.3.1-py35_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-32::notebook-5.3.1-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-32::notebook-5.3.1-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-32::notebook-5.3.1-py36_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-32::notebook-5.4.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.0"
+  "version": "5.4.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-32::notebook-5.4.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.0"
+  "version": "5.4.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-32::notebook-5.4.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.0"
+  "version": "5.4.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-32::notebook-5.4.1-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.1"
+  "version": "5.4.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-32::notebook-5.4.1-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.1"
+  "version": "5.4.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-32::notebook-5.4.1-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.1"
+  "version": "5.4.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-4.1.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.1.0"
+  "version": "4.1.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-4.1.0-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.1.0"
+  "version": "4.1.0",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
win-64::notebook-4.1.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.1.0"
+  "version": "4.1.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-4.2.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.0"
+  "version": "4.2.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-4.2.0-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.0"
+  "version": "4.2.0",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
win-64::notebook-4.2.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.0"
+  "version": "4.2.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-4.2.1-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.1"
+  "version": "4.2.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-4.2.1-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.1"
+  "version": "4.2.1",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
win-64::notebook-4.2.1-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.1"
+  "version": "4.2.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-4.2.2-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.2"
+  "version": "4.2.2",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-4.2.2-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.2"
+  "version": "4.2.2",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
win-64::notebook-4.2.2-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.2"
+  "version": "4.2.2",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-4.2.3-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.3"
+  "version": "4.2.3",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-4.2.3-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.3"
+  "version": "4.2.3",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
win-64::notebook-4.2.3-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.2.3"
+  "version": "4.2.3",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-4.3.1-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.1"
+  "version": "4.3.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-4.3.1-py34_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp34m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.1"
+  "version": "4.3.1",
+  "constrains": [
+    "python_abi * *_cp34m"
+  ]
win-64::notebook-4.3.1-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.1"
+  "version": "4.3.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-4.3.2-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.2"
+  "version": "4.3.2",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-4.3.2-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.2"
+  "version": "4.3.2",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-4.3.2-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.3.2"
+  "version": "4.3.2",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-4.4.1-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.4.1"
+  "version": "4.4.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-4.4.1-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.4.1"
+  "version": "4.4.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-4.4.1-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "4.4.1"
+  "version": "4.4.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.0.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.0.0"
+  "version": "5.0.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.0.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.0.0"
+  "version": "5.0.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-5.0.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.0.0"
+  "version": "5.0.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.1.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.1.0"
+  "version": "5.1.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.1.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.1.0"
+  "version": "5.1.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-5.1.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.1.0"
+  "version": "5.1.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.2.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.2.0-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.2.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-5.2.0-py35_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-5.2.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.2.0-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.0"
+  "version": "5.2.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.2.1-py27_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.1"
+  "version": "5.2.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.2.1-py35_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.1"
+  "version": "5.2.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-5.2.1-py36_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.1"
+  "version": "5.2.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.2.2-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.2.2-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.2.2-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-5.2.2-py35_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-5.2.2-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.2.2-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.2.2"
+  "version": "5.2.2",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.3.1-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.3.1-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.3.1-py27_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.3.1-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-5.3.1-py35_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-5.3.1-py35_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-5.3.1-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client",
+    "jupyter_client <8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.3.1-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.3.1-py36_2.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.3.1"
+  "version": "5.3.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.4.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.0"
+  "version": "5.4.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.4.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.0"
+  "version": "5.4.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-5.4.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.0"
+  "version": "5.4.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.4.1-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.1"
+  "version": "5.4.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.4.1-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.1"
+  "version": "5.4.1",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-5.4.1-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-  "version": "5.4.1"
+  "version": "5.4.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.5.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.5.0"
+  "version": "5.5.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.5.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.5.0"
+  "version": "5.5.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-5.5.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.5.0"
+  "version": "5.5.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.6.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.6.0-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.6.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-5.6.0-py35_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-5.6.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.6.0-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.6.0-py37_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.6.0"
+  "version": "5.6.0",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
win-64::notebook-5.7.0-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.0"
+  "version": "5.7.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.7.0-py27_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.0"
+  "version": "5.7.0",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.7.0-py35_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp35m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.0"
+  "version": "5.7.0",
+  "constrains": [
+    "python_abi * *_cp35m"
+  ]
win-64::notebook-5.7.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.0"
+  "version": "5.7.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.7.0-py36_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.0"
+  "version": "5.7.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.7.0-py37_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.0"
+  "version": "5.7.0",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
win-64::notebook-5.7.1-py27_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.1"
+  "version": "5.7.1",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.7.1-py36_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.1"
+  "version": "5.7.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.7.1-py37_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.1"
+  "version": "5.7.1",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
win-64::notebook-5.7.10-py36h9f0ad1d_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-5.7.10-py37hc8dfbb8_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-5.7.11-py36ha15d459_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-5.7.11-py37h03978a9_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-5.7.11-py38haa244fe_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-5.7.11-py39hcbf5309_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-5.7.2-py27_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.2"
+  "version": "5.7.2",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.7.2-py36_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.2"
+  "version": "5.7.2",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.7.2-py37_1000.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.2"
+  "version": "5.7.2",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
win-64::notebook-5.7.4-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.4"
+  "version": "5.7.4",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.7.4-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.4"
+  "version": "5.7.4",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.7.4-py37_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.4"
+  "version": "5.7.4",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
win-64::notebook-5.7.5-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.5"
+  "version": "5.7.5",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.7.5-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.5"
+  "version": "5.7.5",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
win-64::notebook-5.7.6-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.6"
+  "version": "5.7.6",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.7.6-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.6"
+  "version": "5.7.6",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.7.6-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.6"
+  "version": "5.7.6",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
win-64::notebook-5.7.7-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.7"
+  "version": "5.7.7",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.7.7-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.7"
+  "version": "5.7.7",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.7.7-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.7"
+  "version": "5.7.7",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
win-64::notebook-5.7.8-py27_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.8"
+  "version": "5.7.8",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.7.8-py27_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp27m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.8"
+  "version": "5.7.8",
+  "constrains": [
+    "python_abi * *_cp27m"
+  ]
win-64::notebook-5.7.8-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.8"
+  "version": "5.7.8",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.7.8-py36_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.8"
+  "version": "5.7.8",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-5.7.8-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.8"
+  "version": "5.7.8",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
win-64::notebook-5.7.8-py37_1.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "5.7.8"
+  "version": "5.7.8",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
win-64::notebook-5.7.9-py36h9f0ad1d_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-5.7.9-py37hc8dfbb8_0.tar.bz2
-    "jupyter_client >=5.2.0",
+    "jupyter_client >=5.2.0,<8",
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.0.0-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.0"
+  "version": "6.0.0",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-6.0.0-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.0"
+  "version": "6.0.0",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
win-64::notebook-6.0.1-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.1"
+  "version": "6.0.1",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-6.0.1-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.1"
+  "version": "6.0.1",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
win-64::notebook-6.0.1-py38_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp38"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.1"
+  "version": "6.0.1",
+  "constrains": [
+    "python_abi * *_cp38"
+  ]
win-64::notebook-6.0.2-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.2"
+  "version": "6.0.2",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-6.0.2-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.2"
+  "version": "6.0.2",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
win-64::notebook-6.0.2-py38_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp38"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.2"
+  "version": "6.0.2",
+  "constrains": [
+    "python_abi * *_cp38"
+  ]
win-64::notebook-6.0.3-py36_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp36m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.3"
+  "version": "6.0.3",
+  "constrains": [
+    "python_abi * *_cp36m"
+  ]
win-64::notebook-6.0.3-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.0.3-py36h9f0ad1d_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.0.3-py37_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp37m"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.3"
+  "version": "6.0.3",
+  "constrains": [
+    "python_abi * *_cp37m"
+  ]
win-64::notebook-6.0.3-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.0.3-py37hc8dfbb8_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.0.3-py38_0.tar.bz2
-  "constrains": [
-    "python_abi * *_cp38"
-  ],
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
-  "version": "6.0.3"
+  "version": "6.0.3",
+  "constrains": [
+    "python_abi * *_cp38"
+  ]
win-64::notebook-6.0.3-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.0.3-py38h32f6830_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.0-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.0-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.0-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.1-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.1-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.1-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.2-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.2-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.2-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.3-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.3-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.3-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.4-py36h9f0ad1d_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.4-py36h9f0ad1d_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.4-py37hc8dfbb8_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.4-py37hc8dfbb8_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.4-py38h32f6830_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.4-py38h32f6830_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.4-py39hde42818_1.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.5-py36ha15d459_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.5-py37h03978a9_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.5-py38haa244fe_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.5-py39hcbf5309_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.6-py36ha15d459_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.6-py37h03978a9_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.6-py38haa244fe_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.1.6-py39hcbf5309_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.2.0-py36ha15d459_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.2.0-py37h03978a9_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.2.0-py38haa244fe_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.2.0-py39hcbf5309_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.3.0-py36ha15d459_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.3.0-py37h03978a9_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.3.0-py38haa244fe_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",
win-64::notebook-6.3.0-py39hcbf5309_0.tar.bz2
-    "pyzmq >=17",
+    "pyzmq >=17,<25",

@RRosio RRosio marked this pull request as ready for review August 3, 2023 19:24
@RRosio RRosio requested a review from a team as a code owner August 3, 2023 19:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants