Skip to content

Commit

Permalink
Update the minimal version of sympy to the latest developer version. …
Browse files Browse the repository at this point in the history
…Try to use newer sympy dependency for the CI.
  • Loading branch information
DimitriPlotnikov committed Apr 14, 2016
1 parent 8952b73 commit be35242
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
numpy == 1.8.2
sympy == 0.7.6.1
sympy == 1.0
2 changes: 1 addition & 1 deletion src/main/resources/checks/sympyChecker.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from distutils.version import LooseVersion, StrictVersion

output = open('sympyVersion.tmp', 'w')
output.write(str(LooseVersion(sympy.__version__) >= LooseVersion("1.0")))
output.write(str(LooseVersion(sympy.__version__) >= LooseVersion("1.0.1")))

0 comments on commit be35242

Please sign in to comment.