Skip to content

Commit b7544fd

Browse files
committed
Fix bug and change version
1 parent 988f851 commit b7544fd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

epython/epython.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ def find_backends():
116116
print(_registry)
117117
print("\n\nPlugin Modules Found: ")
118118
print(discovered_plugins)
119-
raise ValueError, "The number of Plugin Modules Found is larger " + \
120-
"than the number of transformations successfully registered."
119+
raise (ValueError, "The number of Plugin Modules Found is larger " + \
120+
"than the number of transformations successfully registered.")
121121

122122
if __name__ == "__main__":
123123
code = main()

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
long_description = f.read()
88

99
setup(
10-
version='0.0.4',
10+
version='0.0.5',
1111
name='epython',
1212
url='https://github.com/epython-dev/epython',
1313
description='A typed subset of Python to be used as an extension language',

0 commit comments

Comments
 (0)