Skip to content

Commit

Permalink
Work around ipython_genutils
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Oct 24, 2023
1 parent 9530fc2 commit f0792df
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions requirements/jupyter.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
# python ~/local/tools/supported_python_versions_pip.py ipython_genutils


nbconvert>=6.0.0; python_version >= '3.6.0' and platform_python_implementation != "PyPy" # Python 3.6+
nbconvert>=6.1.0; python_version >= '3.7.0' and platform_python_implementation != "PyPy" # Python 3.7+
nbconvert>=6.0.0; python_version < '3.7.0' and python_version >= '3.6.0' and platform_python_implementation != "PyPy" # Python 3.6

# For nbconvert
jinja2>=3.0.0 ; python_version >= '3.6' and platform_python_implementation != "PyPy" # Python 3.6+
Expand Down Expand Up @@ -37,7 +38,7 @@ debugpy>=1.0.0 ; python_version < '3.7' and python_version >= '3.6' # Pyt


# Needed for 3.10 tests
ipython_genutils >= 0.2.0 ; python_version >= '3.10' # Python 3.10+
# ipython_genutils >= 0.2.0 ; python_version >= '3.10' # Python 3.10+


# For IPython
Expand Down

0 comments on commit f0792df

Please sign in to comment.