Skip to content

Commit

Permalink
Merge 8febffe into efb1fef
Browse files Browse the repository at this point in the history
  • Loading branch information
davidrpugh committed Apr 17, 2015
2 parents efb1fef + 8febffe commit 9635802
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -10,6 +10,9 @@
# ignore build info
dist/

# ignore *.egg-info
*.egg-info/

# ignore version file
pycollocation/version.py

Expand Down
2 changes: 1 addition & 1 deletion pycollocation/symbolics.py
Expand Up @@ -52,7 +52,7 @@ def _symbolic_system(self):
@property
def _symbolic_vars(self):
"""List of symbolic model variables."""
return [self.independent_var] + self.dependent_vars
return sym.var([self.independent_var] + self.dependent_vars)

def _clear_cache(self):
"""Clear cached symbolic Jacobian."""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -22,7 +22,7 @@
setup(
name="pycollocation",
packages=['pycollocation'],
version='0.2.3-alpha',
version='0.2.4-alpha',
license="MIT License",
author="davidrpugh",
author_email="david.pugh@maths.ox.ac.uk",
Expand Down

0 comments on commit 9635802

Please sign in to comment.