mirror of
https://github.com/fastai/fastbook.git
synced 2025-04-05 18:30:44 +00:00
Fix environment.yml
to include missing deps execnb
and nbformat
and add missing dep in clean.py
. I was able to execute clean.py
after these changes.
This commit is contained in:
parent
823b69e00a
commit
e10e95599e
@ -7,6 +7,8 @@ dependencies:
|
|||||||
- python>=3.6
|
- python>=3.6
|
||||||
- pytorch>=1.6
|
- pytorch>=1.6
|
||||||
- torchvision
|
- torchvision
|
||||||
|
- execnb
|
||||||
|
- nbformat
|
||||||
- pip
|
- pip
|
||||||
- pip:
|
- pip:
|
||||||
- -r requirements.txt
|
- -r requirements.txt
|
||||||
|
@ -4,6 +4,7 @@ import nbformat
|
|||||||
from nbdev.export import *
|
from nbdev.export import *
|
||||||
from nbdev.clean import *
|
from nbdev.clean import *
|
||||||
from fastcore.all import *
|
from fastcore.all import *
|
||||||
|
from execnb.nbio import *
|
||||||
|
|
||||||
_re_header = re.compile(r'^#+\s+\S+')
|
_re_header = re.compile(r'^#+\s+\S+')
|
||||||
_re_clean = re.compile(r'^\s*#\s*clean\s*')
|
_re_clean = re.compile(r'^\s*#\s*clean\s*')
|
||||||
|
Loading…
Reference in New Issue
Block a user