Skip to content

Commit

Permalink
change backcompat pin to nbconvert (#7027)
Browse files Browse the repository at this point in the history
  • Loading branch information
smackesey committed Mar 11, 2022
1 parent 1cb6d56 commit b0a0dc2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
1 change: 0 additions & 1 deletion docs/docs-build-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,3 @@ google-api-python-client<2.0.0
google-cloud-storage
paramiko
papermill>=1.0.0
ipython_genutils>=0.2.0
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
markupsafe<=2.0.1
grpcio-health-checking<1.44.0

# We implicitly depended on this in older versions.
ipython_genutils>=0.2.0
# 5.2+ stops pulling in `ipython_genutils`, on which the old version of `nbconvert` we use
# implicitly depends. Can remove this pin when/if dagit cap on nbconvert is lifted.
nbformat<=5.1.3
9 changes: 3 additions & 6 deletions python_modules/dagit/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,9 @@ def get_version():
"click>=7.0,<9.0",
f"dagster{pin}",
f"dagster-graphql{pin}",
# See: https://github.com/mu-editor/mu/pull/1844
# ipykernel<6 depends on ipython_genutils, but it isn't explicitly
# declared as a dependency. It also depends on traitlets, which
# incidentally brought ipython_genutils, but in v5.1 it was dropped, so as
# a workaround we need to manually specify it here
"ipython_genutils>=0.2.0",
# 5.2+ stops pulling in `ipython_genutils`, on which the old version of `nbconvert` we use
# implicitly depends. Can remove nbformat dependency entirely when/if cap on nbconvert is lifted.
"nbformat<=5.1.3",
"requests",
# watchdog
"watchdog>=0.8.3",
Expand Down

1 comment on commit b0a0dc2

@vercel
Copy link

@vercel vercel bot commented on b0a0dc2 Mar 11, 2022

Choose a reason for hiding this comment

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

Please sign in to comment.