Skip to content

Commit 9830276

Browse files
authored
Bump version to 0.4.2 (#582)
1 parent 93250f9 commit 9830276

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

funsor/instrument.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ def debug_logged(fn):
4848
return fn
4949
return DebugLogged(fn)
5050

51-
5251
elif PROFILE:
5352

5453
class ProfileLogged(object):
@@ -76,7 +75,6 @@ def debug_logged(fn):
7675
return fn
7776
return ProfileLogged(fn)
7877

79-
8078
else:
8179

8280
def debug_logged(fn):

funsor/interpreter.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ def interpret(cls, *args):
7474
print(indent + "-> " + result_str)
7575
return result
7676

77-
7877
elif _TYPECHECK:
7978

8079
def interpret(cls, *args):
@@ -84,7 +83,6 @@ def interpret(cls, *args):
8483
reflect.interpret(cls, *args) # for checking only
8584
return interpretation.interpret(cls, *args)
8685

87-
8886
else:
8987
interpret = Interpreter()
9088

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
setup(
2525
name="funsor",
26-
version="0.4.1",
26+
version="0.4.2",
2727
description="A tensor-like library for functions and distributions",
2828
packages=find_packages(include=["funsor", "funsor.*"]),
2929
url="https://github.com/pyro-ppl/funsor",

0 commit comments

Comments
 (0)