Changeset View
Changeset View
Standalone View
Standalone View
python_modules/libraries/dagstermill/setup.py
Show All 28 Lines | setup( | ||||
], | ], | ||||
install_requires=[ | install_requires=[ | ||||
"dagster", | "dagster", | ||||
# ipykernel 5.4.0 and 5.4.1 broke papermill | # ipykernel 5.4.0 and 5.4.1 broke papermill | ||||
# see https://github.com/dagster-io/dagster/issues/3401, | # see https://github.com/dagster-io/dagster/issues/3401, | ||||
# https://github.com/nteract/papermill/issues/519, | # https://github.com/nteract/papermill/issues/519, | ||||
# https://github.com/ipython/ipykernel/issues/568 | # https://github.com/ipython/ipykernel/issues/568 | ||||
"ipykernel>=4.9.0,!=5.4.0,!=5.4.1", | "ipykernel>=4.9.0,!=5.4.0,!=5.4.1", | ||||
# jupyter-client 6.1.13 and beyond breaks with current other pins | |||||
"jupyter-client<6.1.13", | |||||
"nbconvert>=5.4.0,<6.0.0", | |||||
"scrapbook >=0.5.0", | "scrapbook>=0.5.0", | ||||
"papermill>=1.0.0,<2.0.0", | "packaging>=20.5", | ||||
"papermill>=1.0.0", | |||||
], | ], | ||||
extras_require={"test": ["matplotlib", "scikit-learn>=0.19.0"]}, | extras_require={ | ||||
"test": [ | |||||
"matplotlib", | |||||
"nbconvert", | |||||
"scikit-learn>=0.19.0", | |||||
"tqdm<=4.48", # https://github.com/tqdm/tqdm/issues/1049 | |||||
] | |||||
}, | |||||
entry_points={"console_scripts": ["dagstermill = dagstermill.cli:main"]}, | entry_points={"console_scripts": ["dagstermill = dagstermill.cli:main"]}, | ||||
) | ) |