Skip to content

Commit

Permalink
Remove jupyter everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
sgugger committed Dec 7, 2019
1 parent 6e4ee07 commit 9130055
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Expand Up @@ -11,8 +11,8 @@ jobs:
architecture: 'x64'
- name: Install the library
run: |
pip install packaging
pip install -e .[dev]
pip install packaging jupyter
pip install -e .
- name: Read all notebooks
run: |
nbdev_read_nbs
Expand Down
1 change: 0 additions & 1 deletion settings.ini
Expand Up @@ -15,7 +15,6 @@ min_python = 3.6
audience = Developers
language = English
requirements = nbformat>=4.4.0 nbconvert pyyaml fastscript packaging
dev_requirements = jupyter
console_scripts = nbdev_build_lib=nbdev.cli:nbdev_build_lib
nbdev_update_lib=nbdev.cli:nbdev_update_lib
nbdev_diff_nbs=nbdev.cli:nbdev_diff_nbs
Expand Down
4 changes: 0 additions & 4 deletions setup.py
Expand Up @@ -21,7 +21,6 @@
py_versions = '2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 3.0 3.1 3.2 3.3 3.4 3.5 3.6 3.7 3.8'.split()

requirements = cfg.get('requirements','').split()
dev_requirements = cfg.get('dev_requirements','').split()
lic = licenses[cfg['license']]
min_python = cfg['min_python']

Expand All @@ -38,9 +37,6 @@
packages = setuptools.find_packages(),
include_package_data = True,
install_requires = requirements,
extras_require = {
'dev': dev_requirements
},
python_requires = '>=' + cfg['min_python'],
long_description = open('README.md').read(),
long_description_content_type = 'text/markdown',
Expand Down

0 comments on commit 9130055

Please sign in to comment.