Skip to content

Commit ff7ebd4

Browse files
committed
release
1 parent 97d64e4 commit ff7ebd4

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

fastcore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.39"
1+
__version__ = "1.0.1"

fastcore/utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -401,8 +401,7 @@ def instantiate(t):
401401
return t() if isinstance(t, type) else t
402402

403403
# Cell
404-
def _using_attr(f, attr, x):
405-
return f(getattr(x,attr))
404+
def _using_attr(f, attr, x): return f(getattr(x,attr))
406405

407406
# Cell
408407
def using_attr(f, attr):

settings.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ author = Jeremy Howard and Sylvain Gugger
77
author_email = infos@fast.ai
88
copyright = fast.ai
99
branch = master
10-
version = 0.1.39
10+
version = 1.0.1
1111
min_python = 3.6
1212
audience = Developers
1313
language = English
1414
custom_sidebar = False
1515
license = apache2
16-
status = 3
16+
status = 4
1717
nbs_path = nbs
1818
doc_path = docs
1919
requirements = numpy dataclasses
20-
dev_requirements = nbdev>=0.2.20 matplotlib pillow torch pandas
20+
dev_requirements = nbdev>=0.2.39 matplotlib pillow torch pandas
2121
git_url = https://github.com/fastai/fastcore/tree/master/
2222
lib_path = fastcore
2323
title = fastcore

0 commit comments

Comments
 (0)