-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SymPy 1.2 compatibility #180
Conversation
Looks like conda is trying to update to py37 for some reason, causing failures for py27 builds. |
@richardotis can you add some comments to the Piecewise patch that make it clearer what is patched and why? |
Is anything holding up merging this? |
args = [] | ||
for e, c in _args: | ||
if not c.is_Atom and not isinstance(c, Relational): | ||
free = c.expr_free_symbols |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the only line that was changed compared to the sympy 1.2 base; originally it was c.free_symbols
. Details in sympy/sympy#14933
There are no blockers to merging this. On a related note, we should probably think about running the test suite against sympy master every once in a while, to avoid getting blindsided by another release. |
I added a comment. If the tests pass on CI, I'll go ahead and merge and rebase the other PRs |
Provides compatibility fixes for codegen changes, as well as a workaround for sympy/sympy#14933